/* ==========================================================================
   Base & Variables
   ========================================================================== */
   :root {
    /* Colors */
    --color-bg-primary: #050505;
    --color-bg-secondary: rgba(15, 15, 17, 0.7);
    --color-bg-tertiary: rgba(26, 26, 28, 0.7);
    
    --color-text-primary: #ffffff;
    --color-text-secondary: #a0a0a5;
    
    --color-silver-light: #f5f5f7;
    --color-silver-mid: #d1d1d6;
    --color-silver-dark: #8e8e93;
    
    --gradient-silver: linear-gradient(135deg, #ffffff 0%, #c5c5c5 50%, #8e8e93 100%);
    --gradient-glow: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(197,197,197,0.05) 100%);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   Platinum Light Theme
   ========================================================================== */
body.theme-light {
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f5f5f7;
    --color-text-primary: #111111;
    --color-text-secondary: #666666;
    
    --color-silver-light: #444444;
    --color-silver-mid: #888888;
    --color-silver-dark: #b0b0b0;
    
    --gradient-silver: linear-gradient(135deg, #111111 0%, #555555 50%, #aaaaaa 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.02) 100%);
}

body.theme-light .glass-card, 
body.theme-light .premium-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

body.theme-light .card-glow {
    background: radial-gradient(circle, rgba(0,0,0,0.03) 0%, transparent 60%);
}

body.theme-light .featured-pillar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 240, 245, 0.9) 100%);
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

body.theme-light .site-header {
    background: transparent;
}

body.theme-light .site-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.theme-light .site-header a, body.theme-light .site-header i {
    color: #111111;
}

body.theme-light .logo-discos,
body.theme-light .logo-mexico {
    color: #111111;
}

body.theme-light .logo-platino {
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.theme-light .btn-outline-glow {
    border-color: rgba(0, 0, 0, 0.5);
    color: #111111;
}

body.theme-light .btn-outline-glow:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: #111111;
}

body.theme-light .btn-disc {
    background: radial-gradient(circle at center, #ffffff 0%, #e0e0e0 80%);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #111111;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05), 0 0 15px rgba(0,0,0,0.05);
}

body.theme-light .btn-disc:hover {
    border-color: rgba(0, 0, 0, 0.6);
    box-shadow: inset 0 0 15px rgba(0,0,0,0.1), 0 0 25px rgba(0,0,0,0.1);
}

body.theme-light .btn-disc-icon {
    background: radial-gradient(circle, #555 15%, #000 40%, #111 80%);
    border-color: rgba(0,0,0,0.5);
}

body.theme-light .btn-disc-icon::after {
    background: #ffffff;
}

body.theme-light .stars, body.theme-light .stars2, body.theme-light .stars3 {
    opacity: 0.3;
    filter: invert(1);
}

body.theme-light .about-bg-disc {
    background: radial-gradient(circle at center, rgba(220,220,230,0.6), #ffffff);
    border: 2px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.03), inset 0 0 50px rgba(0, 0, 0, 0.02);
}

body.theme-light .site-footer {
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.05);
}

body.theme-light .footer-bottom {
    background: #f5f5f7;
    border-top: 1px solid rgba(0,0,0,0.05);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg-primary);
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-content {
    flex: 1;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.text-gradient-silver {
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.5rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
}

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

/* Glassmorphism & Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-glow {
    background: #ffffff;
    color: #000000;
    border: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-primary-glow:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    background: var(--color-silver-light);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline-glow {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.btn-outline-glow:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

.btn-disc {
    background: radial-gradient(circle at center, #1a1a1e 0%, #000 80%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.2rem 0.5rem 0.5rem;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 10px rgba(255,255,255,0.05), 0 0 15px rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-disc:hover {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 0 15px rgba(255,255,255,0.1), 0 0 25px rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.btn-disc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(
        from 0deg,
        #8a8a90 0deg,
        #c0c0c8 30deg,
        #707078 60deg,
        #b8b8c0 90deg,
        #909098 120deg,
        #d0d0d8 150deg,
        #808088 180deg,
        #c8c8d0 210deg,
        #888890 240deg,
        #b0b0b8 270deg,
        #787880 300deg,
        #c0c0c8 330deg,
        #8a8a90 360deg
    );
    box-shadow: 
        inset 0 0 2px rgba(0,0,0,0.3),
        inset 0 0 8px rgba(0,0,0,0.2),
        0 0 5px rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    animation: spin-slow 4s linear infinite;
}

.btn-disc-icon::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #404048 0%, #202028 100%);
    border: 1px solid rgba(180, 180, 190, 0.4);
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.2);
    border-radius: 50%;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

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

.animate-fade-up {
    animation: fadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-base);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    line-height: 1;
    z-index: 1001;
}

.logo-discos {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--color-silver-dark);
}

.logo-platino {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-mexico {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    color: var(--color-silver-mid);
    align-self: flex-end;
    margin-top: 2px;
}

.main-nav {
    display: none;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-text-primary);
    transition: var(--transition-fast);
}

.main-nav a:hover, .main-nav a.active {
    color: var(--color-text-primary);
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--color-text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    display: block;
}

@media (min-width: 992px) {
    .main-nav {
        display: block;
    }
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu Active State */
.main-nav.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding-left: 15%;
}

.main-nav.active ul {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.main-nav.active a {
    font-size: 1.5rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(30,30,35,0.4) 0%, transparent 70%);
    z-index: 1;
}

.hero-bg-gradients {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(200, 200, 200, 0.04) 0%, transparent 40%);
    z-index: 1;
}

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

.hero-support {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-silver-dark);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 5rem;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: 6.5rem;
    }
}

.hero-subheadline {
    font-size: 1.125rem;
    color: var(--color-silver-mid);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

@media (min-width: 768px) {
    .hero-subheadline {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

@media (min-width: 576px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-tagline {
    font-family: var(--font-heading);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-silver-mid);
    border-radius: 2px;
    margin-top: 6px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.about-bg-disc {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(30,30,35,0.8), #000);
    border: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 100px rgba(255, 255, 255, 0.02), inset 0 0 50px rgba(255, 255, 255, 0.02);
    animation: spin-slow 60s linear infinite;
    z-index: 1;
    filter: blur(10px);
}

.about-cinematic-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem auto;
}

.about-cinematic-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .about-cinematic-title {
        font-size: 3.5rem;
    }
}

.about-cinematic-desc {
    font-size: 1.2rem;
    color: var(--color-silver-mid);
    line-height: 1.8;
}

.about-cinematic-desc strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

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

@media (min-width: 992px) {
    .about-pillars-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.pillar-card {
    text-align: center;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-pillar {
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 992px) {
    .featured-pillar {
        transform: translateY(-20px);
    }
}

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

.pillar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.pillar-card p {
    font-size: 0.95rem;
    color: var(--color-silver-light);
    line-height: 1.6;
}

.premium-card {
    position: relative;
    padding: 3rem;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.abstract-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.premium-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.premium-card p {
    color: var(--color-text-secondary);
}

/* ==========================================================================
   Credibility Section
   ========================================================================== */
.credibility-section {
    padding: var(--spacing-xl) 0;
    background: transparent;
    position: relative;
}

.credibility-banner {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg) 0;
    text-align: center;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
}

.dist-statement {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-silver-dark);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.dist-partners {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .dist-partners {
        font-size: 1.8rem;
        gap: 2rem;
    }
}

.separator {
    color: rgba(255, 255, 255, 0.2);
    font-weight: 100;
}

.dist-support {
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Genre Focus Section
   ========================================================================== */
.genres-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-secondary);
}

/* ── Single Genre Orbit ─────────────────────────────────────── */
.genre-orbit-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--spacing-lg);
    padding: 2rem 0;
}

.genre-orbit-container {
    position: relative;
    width: 500px;
    height: 500px;
}

@media (min-width: 576px) {
    .genre-orbit-container {
        width: 600px;
        height: 600px;
    }
}

@media (min-width: 992px) {
    .genre-orbit-container {
        width: 800px;
        height: 800px;
    }
}

/* Central hub */
.genre-orbit-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #1a1a1e 0%, #000 100%);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 0 40px rgba(255, 255, 255, 0.08),
        0 0 80px rgba(255, 255, 255, 0.03),
        inset 0 0 30px rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    gap: 1px;
}

@media (min-width: 576px) {
    .genre-orbit-hub {
        width: 130px;
        height: 130px;
    }
}

@media (min-width: 992px) {
    .genre-orbit-hub {
        width: 160px;
        height: 160px;
    }
}

.hub-label-top {
    font-family: var(--font-heading);
    font-size: 0.5rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--color-silver-dark);
}

.hub-label-main {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hub-label-bottom {
    font-family: var(--font-heading);
    font-size: 0.45rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--color-silver-mid);
}

@media (min-width: 576px) {
    .hub-label-top { font-size: 0.6rem; }
    .hub-label-main { font-size: 1.1rem; }
    .hub-label-bottom { font-size: 0.55rem; }
}

@media (min-width: 992px) {
    .hub-label-top { font-size: 0.7rem; }
    .hub-label-main { font-size: 1.3rem; }
    .hub-label-bottom { font-size: 0.6rem; }
}

/* Dashed orbit track (static visual ring) */
.genre-orbit-track {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.08);
}

/* Rotating ring that carries all planets */
.genre-orbit-ring {
    position: absolute;
    inset: 0;
    /* Rotation handled by JS for precise counter-rotation */
}

@keyframes orbit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Individual planet (genre circle) */
.genre-planet {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    cursor: pointer;
    z-index: 5;
}


/* The visible circle for each planet */
.genre-planet-circle {
    width: 90px;
    height: 90px;
    margin-left: -45px;
    margin-top: -45px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #141416 0%, #000 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.06),
        inset 0 0 20px rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.5rem;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

@media (min-width: 576px) {
    .genre-planet-circle {
        width: 110px;
        height: 110px;
        margin-left: -55px;
        margin-top: -55px;
        padding: 0.75rem;
    }
}

@media (min-width: 992px) {
    .genre-planet-circle {
        width: 140px;
        height: 140px;
        margin-left: -70px;
        margin-top: -70px;
        padding: 1rem;
    }
}

.genre-planet-circle h3 {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.3;
}

@media (min-width: 576px) {
    .genre-planet-circle h3 {
        font-size: 0.8rem;
    }
}

@media (min-width: 992px) {
    .genre-planet-circle h3 {
        font-size: 1rem;
        letter-spacing: 0.08em;
    }
}

/* Hover effect on planets */
.genre-planet:hover .genre-planet-circle {
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow:
        0 0 35px rgba(255, 255, 255, 0.15),
        0 0 70px rgba(255, 255, 255, 0.05),
        inset 0 0 30px rgba(255, 255, 255, 0.06);
    transform: scale(1.1);
}

.genre-planet:active .genre-planet-circle {
    transform: scale(0.95);
}

/* Focus visible for keyboard nav */
.genre-planet:focus-visible .genre-planet-circle {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 4px;
}

/* ==========================================================================
   Genre Modal
   ========================================================================== */
.genre-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: none;
    padding: 1rem;
}

.genre-modal-overlay.is-active {
    pointer-events: auto;
}

.genre-modal {
    position: relative;
    width: 100%;
    max-width: 880px;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(12, 12, 16, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    box-shadow:
        0 0 60px rgba(255, 255, 255, 0.04),
        0 30px 80px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 3rem 2.5rem 2.5rem;
    transform: scale(0.92);
    opacity: 0;
}

/* Custom scrollbar for modal */
.genre-modal::-webkit-scrollbar {
    width: 4px;
}
.genre-modal::-webkit-scrollbar-track {
    background: transparent;
}
.genre-modal::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.genre-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-secondary);
    font-size: 1.8rem;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.genre-modal-close:hover {
    color: var(--color-text-primary);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.genre-modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
}

.genre-modal-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #151518 0%, #000 100%);
    border: 2px solid var(--color-silver-light);
    box-shadow:
        0 0 40px rgba(255, 255, 255, 0.12),
        0 0 80px rgba(255, 255, 255, 0.04),
        inset 0 0 30px rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    margin-bottom: 1.5rem;
    animation: genre-circle-pulse 3s ease-in-out infinite;
}

@keyframes genre-circle-pulse {
    0%, 100% { box-shadow: 0 0 40px rgba(255,255,255,0.12), 0 0 80px rgba(255,255,255,0.04), inset 0 0 30px rgba(255,255,255,0.05); }
    50% { box-shadow: 0 0 50px rgba(255,255,255,0.18), 0 0 100px rgba(255,255,255,0.06), inset 0 0 40px rgba(255,255,255,0.08); }
}

.genre-modal-circle h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-text-primary);
    margin: 0;
    text-transform: uppercase;
}

.genre-modal-desc {
    font-size: 1.1rem;
    color: var(--color-silver-mid);
    max-width: 550px;
    line-height: 1.7;
    font-weight: 300;
}

.genre-modal-subgenres {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 576px) {
    .genre-modal-subgenres {
        grid-template-columns: repeat(2, 1fr);
    }
}

.subgenre-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.subgenre-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

.subgenre-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

.subgenre-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.subgenre-card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.genre-modal-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.genre-modal-cta,
.genre-modal-deep {
    padding: 0.9rem 1.85rem;
    font-size: 0.88rem;
}

/* Constellation center cursor when interactive */
.constellation-center[data-genre] {
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.constellation-center[data-genre]:hover {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2), inset 0 0 50px rgba(255, 255, 255, 0.08);
    transform: translate(-50%, -50%) scale(1.06);
}

.constellation-center[data-genre]:active {
    transform: translate(-50%, -50%) scale(0.97);
}

/* Responsive modal adjustments */
@media (max-width: 575px) {
    .genre-modal {
        padding: 2.5rem 1.5rem 2rem;
    }
    .genre-modal-circle {
        width: 100px;
        height: 100px;
    }
    .genre-modal-circle h3 {
        font-size: 0.9rem;
    }
    .genre-modal-desc {
        font-size: 0.95rem;
    }
}


/* ==========================================================================
   Benefits Section
   ========================================================================== */
.benefits-section {
    padding: var(--spacing-xl) 0;
    background-color: transparent;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: var(--spacing-lg);
}

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

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

.benefit-card {
    padding: 2.5rem 2rem;
    transition: var(--transition-base);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255,255,255,0.15);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--color-silver-mid);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* ==========================================================================
   Submission Section
   ========================================================================== */
.submission-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-secondary);
}

.submission-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

@media (min-width: 992px) {
    .submission-wrapper {
        grid-template-columns: 1fr 1.5fr;
    }
}

.submission-info {
    padding: 3rem;
    background: rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.submission-subtitle {
    color: var(--color-silver-mid);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.feature-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.feature-line i {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 50%;
    font-size: 0.8rem;
}

.submission-form-container {
    padding: 3rem;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-silver-dark);
}

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

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.premium-form select option {
    background: var(--color-bg-secondary);
    color: var(--color-text-primary);
}

.btn-submit {
    margin-top: 1rem;
    width: 100%;
}

@media (min-width: 768px) {
    .btn-submit {
        width: auto;
        align-self: flex-start;
    }
}

/* ==========================================================================
   Multi-Step Form (Postulate)
   ========================================================================== */
.premium-form-stepped {
    gap: 0;
}

/* Progress indicator */
.form-progress {
    margin-bottom: 2.5rem;
}

.form-steps {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    counter-reset: step;
    position: relative;
}

.form-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    text-align: center;
    color: var(--color-silver-dark);
    transition: color var(--transition-base);
    position: relative;
    z-index: 1;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-silver-mid);
    transition: var(--transition-base);
}

.step-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.form-step.is-active {
    color: var(--color-text-primary);
}

.form-step.is-active .step-num {
    background: var(--gradient-silver, linear-gradient(135deg, #d8d8e0 0%, #a8a8b0 100%));
    border-color: rgba(255, 255, 255, 0.4);
    color: #1a1a1f;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.15);
}

.form-step.is-complete {
    color: var(--color-silver-mid);
}

.form-step.is-complete .step-num {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--color-text-primary);
}

.form-step.is-complete .step-num::after {
    content: "\f00c"; /* Font Awesome check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.75rem;
}

.form-step.is-complete .step-num > * {
    display: none;
}

.form-progress-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
}

.form-progress-fill {
    height: 100%;
    width: 33.33%;
    background: var(--gradient-silver, linear-gradient(90deg, #d8d8e0 0%, #a8a8b0 100%));
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (max-width: 540px) {
    .step-label {
        display: none;
    }
}

/* Step panels */
.form-step-panel {
    border: none;
    padding: 0;
    margin: 0;
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    animation: stepFadeIn 0.4s ease-out;
}

.form-step-panel.is-active {
    display: flex;
}

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

.step-heading {
    padding: 0;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.step-eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-silver-dark);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin: 0;
    color: var(--color-text-primary);
    font-weight: 700;
}

.step-desc {
    color: var(--color-silver-mid);
    font-size: 0.95rem;
    margin: 0;
}

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

/* Step navigation buttons */
.form-step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-step-prev,
.btn-step-next {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-text-primary);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.btn-step-next {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-step-prev:hover,
.btn-step-next:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.premium-form-stepped .btn-submit {
    margin-top: 0;
    width: auto;
}

/* Field-level validation feedback */
.premium-form input.is-invalid,
.premium-form select.is-invalid,
.premium-form textarea.is-invalid {
    border-color: rgba(255, 100, 100, 0.6);
    background: rgba(255, 100, 100, 0.05);
}

.field-error {
    font-size: 0.8rem;
    color: rgba(255, 130, 130, 0.95);
    margin-top: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    animation: errFadeIn 0.2s ease-out;
}

@keyframes errFadeIn {
    from { opacity: 0; transform: translateY(-2px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, var(--color-bg-primary) 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-headline {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-headline {
        font-size: 4rem;
    }
}

.cta-support {
    font-size: 1.25rem;
    color: var(--color-silver-mid);
    margin-bottom: 2.5rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-primary);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-divider {
    width: 60px;
    height: 2px;
    background: var(--gradient-silver);
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}

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

.contact-icon {
    font-size: 2rem;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-item p {
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.contact-item a:hover {
    color: var(--color-text-primary);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--color-bg-tertiary);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 4rem;
}

/* ==========================================================================
   Page Transitions
   ========================================================================== */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg-primary);
    z-index: 9999;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-transition-overlay::after {
    content: '';
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #444 0deg,
        #f5f5f7 45deg,
        #444 90deg,
        #f5f5f7 135deg,
        #222 180deg,
        #f5f5f7 225deg,
        #444 270deg,
        #f5f5f7 315deg,
        #444 360deg
    );
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    -webkit-mask: radial-gradient(circle, transparent 15%, black 16%);
    mask: radial-gradient(circle, transparent 15%, black 16%);
    animation: spinOverlayDisc 1s linear infinite;
}

@keyframes spinOverlayDisc {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   Animated Stars Background
   ========================================================================== */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.stars, .stars2, .stars3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.stars {
    background: transparent url('data:image/svg+xml;utf8,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="30" r="0.5" fill="%23ffffff" opacity="0.8"/><circle cx="80" cy="110" r="0.5" fill="%23ffffff" opacity="0.6"/><circle cx="150" cy="60" r="0.5" fill="%23ffffff" opacity="0.9"/><circle cx="60" cy="180" r="0.5" fill="%23ffffff" opacity="0.5"/></svg>') repeat;
    animation: animStar 50s linear infinite;
}

.stars2 {
    background: transparent url('data:image/svg+xml;utf8,<svg width="300" height="300" xmlns="http://www.w3.org/2000/svg"><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.9"/><circle cx="220" cy="150" r="1" fill="%23ffffff" opacity="0.7"/><circle cx="100" cy="250" r="1" fill="%23ffffff" opacity="0.8"/></svg>') repeat;
    animation: animStar2 100s linear infinite;
}

.stars3 {
    background: transparent url('data:image/svg+xml;utf8,<svg width="400" height="400" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="150" r="1.5" fill="%23ffffff" opacity="1"/><circle cx="300" cy="350" r="1.5" fill="%23ffffff" opacity="0.9"/></svg>') repeat;
    animation: animStar3 150s linear infinite;
}

@keyframes animStar { from { background-position: 0 0; } to { background-position: 0 -200px; } }
@keyframes animStar2 { from { background-position: 0 0; } to { background-position: 0 -300px; } }
@keyframes animStar3 { from { background-position: 0 0; } to { background-position: 0 -400px; } }

/* ==========================================================================
   Distribution Page
   ========================================================================== */
.dist-hero {
    padding: var(--spacing-lg) 0;
    margin-top: 2rem;
}

.dist-section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-silver-mid);
    margin-bottom: var(--spacing-md);
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: var(--spacing-xl);
}

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

.partner-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-base);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.partner-logo {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.partner-card p {
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
}

.platforms-wrapper {
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 992px) {
    .platforms-wrapper {
        grid-template-columns: 2fr 1fr;
        align-items: center;
        padding: 4rem;
    }
}

.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
}

.tag:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.platforms-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

@media (min-width: 992px) {
    .platforms-stats {
        border-top: none;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 0;
        padding-left: 3rem;
    }
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

/* ==========================================================================
   Spinning Metal Disc Navigation
   ========================================================================== */
.disc-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 10;
}

@media (min-width: 992px) {
    .disc-hero {
        flex-direction: row;
        justify-content: space-between;
    }
}

.disc-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50vw;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 1;
    pointer-events: none; /* Let clicks pass through empty parts */
}

@media (min-width: 992px) {
    .disc-wrapper {
        height: 100vh;
        padding-right: 0;
    }
}

.metal-disc.css-disc {
    width: 150vw;
    height: 150vw;
    max-width: none;
    max-height: none;
    position: absolute;
    left: -120vw;
    border-radius: 50%;
    background:
        repeating-radial-gradient(
            circle at center,
            rgba(200, 200, 210, 0.03) 0px,
            rgba(120, 120, 130, 0.06) 1px,
            rgba(180, 180, 190, 0.02) 2px,
            transparent 3px,
            transparent 5px
        ),
        conic-gradient(
            from 0deg,
            #8a8a90 0deg,
            #c0c0c8 30deg,
            #707078 60deg,
            #b8b8c0 90deg,
            #909098 120deg,
            #d0d0d8 150deg,
            #808088 180deg,
            #c8c8d0 210deg,
            #888890 240deg,
            #b0b0b8 270deg,
            #787880 300deg,
            #c0c0c8 330deg,
            #8a8a90 360deg
        );
    box-shadow:
        inset 0 0 80px rgba(0, 0, 0, 0.4),
        inset 0 0 200px rgba(0, 0, 0, 0.2),
        0 0 80px rgba(200, 200, 220, 0.08),
        0 0 200px rgba(200, 200, 220, 0.03);
    /* GSAP takes over animation */
    filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.1));
}

/* Groove rings */
.disc-groove {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at center,
            transparent 0%, transparent 8%,
            rgba(160, 160, 170, 0.08) 8.5%, transparent 9%,
            transparent 14%, rgba(160, 160, 170, 0.06) 14.5%, transparent 15%,
            transparent 20%, rgba(160, 160, 170, 0.05) 20.5%, transparent 21%,
            transparent 26%, rgba(160, 160, 170, 0.05) 26.5%, transparent 27%,
            transparent 32%, rgba(160, 160, 170, 0.04) 32.5%, transparent 33%,
            transparent 38%, rgba(160, 160, 170, 0.04) 38.5%, transparent 39%,
            transparent 44%, rgba(160, 160, 170, 0.03) 44.5%, transparent 45%,
            transparent 100%
        );
    pointer-events: none;
}

/* Counter-rotating light reflection */
.disc-shine {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg, transparent 80deg,
        rgba(255, 255, 255, 0.07) 100deg,
        rgba(255, 255, 255, 0.15) 120deg,
        rgba(255, 255, 255, 0.07) 140deg,
        transparent 160deg, transparent 360deg
    );
    animation: spin-shine 6s linear infinite;
    pointer-events: none;
}

/* Center label hub */
.disc-label {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14%;
    height: 14%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #d0d0d8 0%, #a0a0a8 30%, #707078 70%, #505058 100%);
    box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.2), inset 0 -2px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(180, 180, 190, 0.3);
}

/* Spindle hole */
.disc-label-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18%;
    height: 18%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, #404048 0%, #202028 100%);
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(100, 100, 110, 0.5);
}

@keyframes spin-disc {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spin-shine {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@media (min-width: 992px) {
    .metal-disc.css-disc {
        width: 140vh;
        height: 140vh;
        left: -70vh;
    }
}

/* Side Menu */
.disc-nav-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* Push to right */
    align-items: center;
    height: 100vh; /* Full height since disc is absolute */
    width: 100%;
    padding-right: 2rem;
    position: relative;
    z-index: 5; /* Ensure menu sits on top of the video disc! */
}

@media (min-width: 992px) {
    .disc-nav-wrapper {
        height: 100vh;
        justify-content: flex-end;
        padding-right: 15vw;
        padding-left: 0;
    }
}

.disc-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Mobile Curve */
.disc-nav li:nth-child(1) { transform: translateX(-60px); }
.disc-nav li:nth-child(2) { transform: translateX(-30px); }
.disc-nav li:nth-child(3) { transform: translateX(-10px); }
.disc-nav li:nth-child(4) { transform: translateX(0px); }
.disc-nav li:nth-child(5) { transform: translateX(-10px); }
.disc-nav li:nth-child(6) { transform: translateX(-30px); }
.disc-nav li:nth-child(7) { transform: translateX(-90px); }

@media (min-width: 992px) {
    .disc-nav ul {
        gap: 1rem;
    }
    
    /* Desktop Curve hugging the disc */
    .disc-nav li:nth-child(1) { transform: translateX(-260px); transition: transform 0.3s ease; }
    .disc-nav li:nth-child(2) { transform: translateX(-160px); transition: transform 0.3s ease; }
    .disc-nav li:nth-child(3) { transform: translateX(-60px); transition: transform 0.3s ease; }
    .disc-nav li:nth-child(4) { transform: translateX(0px); transition: transform 0.3s ease; }
    .disc-nav li:nth-child(5) { transform: translateX(-60px); transition: transform 0.3s ease; }
    .disc-nav li:nth-child(6) { transform: translateX(-160px); transition: transform 0.3s ease; }
    .disc-nav li:nth-child(7) { transform: translateX(-360px); transition: transform 0.3s ease; }

    /* Enhance curve effect on hover */
    .disc-nav li:hover {
        transform: translateX(20px) !important; /* Fallback */
    }
    .disc-nav li:nth-child(1):hover { transform: translateX(-240px) !important; }
    .disc-nav li:nth-child(2):hover { transform: translateX(-140px) !important; }
    .disc-nav li:nth-child(3):hover { transform: translateX(-40px) !important; }
    .disc-nav li:nth-child(4):hover { transform: translateX(20px) !important; }
    .disc-nav li:nth-child(5):hover { transform: translateX(-40px) !important; }
    .disc-nav li:nth-child(6):hover { transform: translateX(-140px) !important; }
    .disc-nav li:nth-child(7):hover { transform: translateX(-340px) !important; }
}

.disc-nav a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: block;
    transition: all 0.3s ease;
    padding: 0.3rem 1rem 0.3rem 0;
    cursor: pointer;
    
    /* Metallic Texture */
    background: linear-gradient(
        to bottom,
        #cfcfcf 0%,
        #ffffff 20%,
        #555555 45%,
        #888888 55%,
        #ffffff 80%,
        #cfcfcf 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* Fallback */
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.8));
}

@media (min-width: 992px) {
    .disc-nav a {
        font-size: 4.5rem; /* Bigger options */
    }
}

.disc-nav a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -40px;
    width: 0;
    height: 2px;
    background: var(--gradient-silver);
    transform: translateY(-50%);
    transition: width 0.3s ease, left 0.3s ease;
}

.disc-nav a:hover,
.disc-nav a.highlight {
    padding-left: 20px;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.4)) drop-shadow(2px 4px 6px rgba(0,0,0,0.8));
    /* Slight brightness bump */
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #ffffff 20%,
        #777777 45%,
        #aaaaaa 55%,
        #ffffff 80%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.disc-nav a:hover::before,
.disc-nav a.highlight::before {
    width: 50px;
    left: -40px;
}

.disc-nav a.highlight {
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Hide standard elements on index page */
body.index-page .main-nav,
body.index-page .header-actions {
    display: none !important;
}

body.index-page .site-header {
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    position: absolute;
    pointer-events: none; /* Let clicks pass through to the menu below */
}

body.index-page .site-header .logo {
    pointer-events: auto; /* Keep logo clickable */
}

body.index-page .header-container {
    justify-content: flex-end;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1.2fr 1fr;
    }
}

.footer-contact h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-contact p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    line-height: 1.4;
}

.footer-contact a {
    color: var(--color-text-secondary);
    word-break: break-word;
}

.footer-contact a:hover {
    color: var(--color-text-primary);
}

.footer-contact i {
    color: var(--color-silver-mid);
    width: 1rem;
    text-align: center;
    flex-shrink: 0;
}

.footer-brand .footer-logo {
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-silver-light);
    margin-bottom: 0.5rem;
}

.footer-company {
    color: var(--color-silver-dark);
    font-size: 0.85rem;
}

.footer-links h4, .footer-social h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-text-primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--color-text-primary);
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0,0,0,0.5);
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.footer-bottom p {
    color: var(--color-silver-dark);
    font-size: 0.85rem;
}

/* ==========================================================================
   Interactive Hover Roster
   ========================================================================== */
.interactive-roster-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--spacing-xxl) 0 0 0;
}

/* Top Section: Split Image and Info */
.roster-top-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 10;
    flex: 1;
}

@media (min-width: 992px) {
    .roster-top-section {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 6rem;
    }
}

/* Left: Image Reveal */
.roster-left {
    width: 100%;
    max-width: 400px;
    height: 550px;
    position: relative;
    margin: 0 auto 3rem auto;
}

@media (min-width: 992px) {
    .roster-left {
        margin: 0;
    }
}

.roster-img-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.theme-dark .roster-img-wrapper {
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.roster-img-wrapper.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* Right: Info Reveal */
.roster-right {
    width: 100%;
    max-width: 400px;
    position: relative;
    height: 400px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .roster-right {
        margin: 0;
    }
}

.roster-info-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(-20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    pointer-events: none;
    text-align: center;
}

@media (min-width: 992px) {
    .roster-info-wrapper {
        text-align: left;
    }
}

.roster-info-wrapper.active {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
}

.roster-info-genre {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-silver-mid);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.roster-info-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 2rem;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.roster-stat-group {
    margin-bottom: 1.5rem;
}

.roster-stat-value {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.roster-stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
    margin-top: 0.25rem;
    font-weight: 600;
}

/* Bottom Panel: Curved Carousel */
.roster-bottom-carousel {
    width: 100%;
    overflow: hidden;
    padding: 4rem 0 2rem 0;
    position: relative;
    margin-top: auto;
}

.carousel-track {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 150px;
}

@media (min-width: 992px) {
    .carousel-track {
        gap: 2rem;
    }
}

.carousel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

/* The Curved Bottom Arc Effect */
.carousel-item:nth-child(1) { transform: translateY(-80px); }
.carousel-item:nth-child(2) { transform: translateY(-30px); }
.carousel-item:nth-child(3) { transform: translateY(0px); }
.carousel-item:nth-child(4) { transform: translateY(0px); }
.carousel-item:nth-child(5) { transform: translateY(-30px); }
.carousel-item:nth-child(6) { transform: translateY(-80px); }

.carousel-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    border: 2px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(0,0,0,0.3);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    overflow: hidden;
}

@media (min-width: 992px) {
    .carousel-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

.theme-dark .carousel-icon {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.3);
}

.carousel-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
    opacity: 0.5;
    transition: all 0.4s ease;
}

/* Active State */
.carousel-item.active .carousel-icon,
.carousel-item:hover .carousel-icon {
    border-color: var(--color-primary);
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    color: var(--color-text-primary);
}

.theme-dark .carousel-item.active .carousel-icon,
.theme-dark .carousel-item:hover .carousel-icon {
    border-color: var(--color-silver-light);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.carousel-item.active .carousel-name,
.carousel-item:hover .carousel-name {
    opacity: 1;
    color: var(--color-text-primary);
}

/* =========================================
   3D Circular Carousel (Beneficios)
   ========================================= */
.carousel-3d-scene {
    width: 100%;
    height: 500px;
    perspective: 1200px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    overflow: visible;
}

.carousel-3d-spinner {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-3d-card {
    position: absolute;
    width: 300px;
    /* translateZ is determined by JavaScript or CSS. Assuming 6 cards, radius = ~300px */
    transform-style: preserve-3d;
    backface-visibility: hidden;
    /* Add slight transparency to non-front cards if desired, handled in JS usually or left opaque */
}

/* Base rotation for the 6 cards */
.carousel-3d-card:nth-child(1) { transform: rotateY(0deg) translateZ(320px); }
.carousel-3d-card:nth-child(2) { transform: rotateY(60deg) translateZ(320px); }
.carousel-3d-card:nth-child(3) { transform: rotateY(120deg) translateZ(320px); }
.carousel-3d-card:nth-child(4) { transform: rotateY(180deg) translateZ(320px); }
.carousel-3d-card:nth-child(5) { transform: rotateY(240deg) translateZ(320px); }
.carousel-3d-card:nth-child(6) { transform: rotateY(300deg) translateZ(320px); }

.carousel-3d-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-3d-btn {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.carousel-3d-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.theme-dark .carousel-3d-btn:hover {
    background: var(--color-silver-light);
    border-color: var(--color-silver-light);
    color: black;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-3d-scene {
        height: 400px;
    }
    .carousel-3d-card {
        width: 240px;
    }
    .carousel-3d-card:nth-child(1) { transform: rotateY(0deg) translateZ(240px); }
    .carousel-3d-card:nth-child(2) { transform: rotateY(60deg) translateZ(240px); }
    .carousel-3d-card:nth-child(3) { transform: rotateY(120deg) translateZ(240px); }
    .carousel-3d-card:nth-child(4) { transform: rotateY(180deg) translateZ(240px); }
    .carousel-3d-card:nth-child(5) { transform: rotateY(240deg) translateZ(240px); }
    .carousel-3d-card:nth-child(6) { transform: rotateY(300deg) translateZ(240px); }
}

/* =========================================
   Custom Modal (Postulate Form)
   ========================================= */
.custom-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.custom-modal {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8), inset 0 0 20px rgba(255,255,255,0.02);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.custom-modal-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.custom-modal-icon.success { 
    background: conic-gradient(from 0deg, #8a8a90, #ffffff, #8a8a90); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.custom-modal-icon.error { color: #ff4444; }

.custom-modal h3 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.custom-modal p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.custom-modal-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.7rem 2.5rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-modal-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   Beneficios Page — Editorial Grid Redesign
   ========================================================================== */

.benefits-page {
    padding-top: 100px;
    overflow-x: clip;
}

/* ----- Hero ----- */
.benefits-hero {
    position: relative;
    padding: 5rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

.benefits-hero-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-silver-mid);
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.benefits-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
    color: var(--color-text-primary);
}

.benefits-hero-desc {
    max-width: 640px;
    margin: 0 auto;
    color: var(--color-silver-mid);
    font-size: 1.05rem;
    line-height: 1.7;
}

.benefits-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* ----- Editorial Grid ----- */
.benefits-grid-section {
    padding: 3rem 0 5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

@media (min-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.benefit-card {
    position: relative;
    padding: 2.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(255, 255, 255, 0.04);
}

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

.benefit-card-num {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-silver-dark);
    opacity: 0.6;
}

.benefit-card-icon {
    font-size: 1.85rem;
    background: linear-gradient(135deg, #d8d8e0 0%, #909098 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    margin-bottom: 0.5rem;
}

.benefit-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: var(--color-text-primary);
    margin: 0;
}

.benefit-card-desc {
    color: var(--color-silver-mid);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ----- CTA ----- */
.benefits-cta-section {
    padding: 2rem 0 6rem;
}

.benefits-cta {
    padding: 3.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.015) 100%);
}

@media (min-width: 768px) {
    .benefits-cta { padding: 5rem 3rem; }
}

.benefits-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.benefits-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    margin: 0;
    color: var(--color-text-primary);
    position: relative;
    z-index: 1;
}

.benefits-cta-desc {
    max-width: 560px;
    color: var(--color-silver-mid);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 0.75rem;
    position: relative;
    z-index: 1;
}

.btn-disc-large {
    padding: 0.75rem 2rem 0.75rem 0.75rem;
    font-size: 0.95rem;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.btn-disc-large .btn-disc-icon {
    width: 38px;
    height: 38px;
}

/* ==========================================================================
   Nosotros Page — Editorial Makeover
   ========================================================================== */

.about-page {
    padding-top: 100px;
    overflow-x: clip;
}

/* ----- Hero ----- */
.about-hero {
    position: relative;
    padding: 5rem 0 5rem;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

.about-hero-container {
    position: relative;
    z-index: 10;
}

.about-hero-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-silver-mid);
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-bottom: 1.75rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0 0 1.75rem;
    color: var(--color-text-primary);
}

.about-hero-desc {
    max-width: 720px;
    margin: 0 auto;
    color: var(--color-silver-mid);
    font-size: 1.1rem;
    line-height: 1.75;
}

.about-hero-desc strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

/* ----- Misión / Visión split ----- */
.about-mv-section {
    padding: 3rem 0;
}

.about-mv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.about-mv-card {
    padding: 2.75rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

.about-mv-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.about-mv-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 0.5rem;
}

.about-mv-icon i {
    font-size: 1.15rem;
    background: linear-gradient(135deg, #d8d8e0 0%, #909098 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-mv-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-silver-dark);
}

.about-mv-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.005em;
    color: var(--color-text-primary);
    margin: 0;
}

.about-mv-desc {
    color: var(--color-silver-mid);
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0;
}

/* ----- Stats Strip ----- */
.about-stats-section {
    padding: 3rem 0;
}

.about-stats-strip {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.015) 0%,
        rgba(255, 255, 255, 0.04) 50%,
        rgba(255, 255, 255, 0.015) 100%);
}

@media (min-width: 720px) {
    .about-stats-strip {
        flex-direction: row;
        gap: 0;
    }
}

.about-stat {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-stat-value {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.01em;
}

.about-stat-label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-silver-mid);
}

.about-stat-divider {
    width: 60%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 auto;
    align-self: center;
}

@media (min-width: 720px) {
    .about-stat-divider {
        width: 1px;
        height: 60px;
        margin: 0;
    }
}

/* ----- "Lo Que Nos Define" 3-card block ----- */
.about-values-section {
    padding: 4rem 0;
}

.about-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.about-section-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--color-silver-dark);
    margin-bottom: 0.75rem;
}

.about-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--color-text-primary);
    margin: 0;
}

.about-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .about-values-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

.about-value-card {
    padding: 2.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.about-value-card:hover::before {
    opacity: 1;
}

.about-value-icon {
    font-size: 1.7rem;
    background: linear-gradient(135deg, #d8d8e0 0%, #909098 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    margin-bottom: 0.25rem;
}

.about-value-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: var(--color-text-primary);
    margin: 0;
}

.about-value-desc {
    color: var(--color-silver-mid);
    font-size: 0.93rem;
    line-height: 1.6;
    margin: 0;
}

/* ----- CTA ----- */
.about-cta-section {
    padding: 2rem 0 6rem;
}

.about-cta {
    padding: 3.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.015) 100%);
}

@media (min-width: 768px) {
    .about-cta { padding: 5rem 3rem; }
}

.about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.about-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    margin: 0;
    color: var(--color-text-primary);
    position: relative;
    z-index: 1;
}

.about-cta-desc {
    max-width: 560px;
    color: var(--color-silver-mid);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 0.75rem;
    position: relative;
    z-index: 1;
}
