/* ===========================
   CREATORS.CSS — FUSIÓN DIGITAL B&W BRANDING
   (HERO ANIMATION & BLACK SCROLL)
   =========================== */

/* 1. GLOBAL ENVIRONMENT & BACKGROUND */
html {
    scroll-behavior: smooth;
}

.creators-page {
    background-color: var(--bg-color);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
}

/* Premium Header - Handled by global styles.css */

/* Content wrapper */
.c-content {
    position: relative;
    z-index: 10;
}

/* Base Spacing & Alignment (Anti-Gap Protocol) */
.c-section {
    margin: 220px 0; /* Luxury Inter-section Vertical Margin upgraded */
    padding: 0 8vw;
    position: relative;
    scroll-margin-top: 100px; /* Offset to clear the sticky global header */
}

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

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

/* 2. TYPOGRAPHY SYSTEM (The Fusión Rule) */
.c-hero-title, .c-heading-manifesto, .c-commission {
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.05;
    margin: 0;
}

.c-card-title {
    font-family: 'Manrope', var(--font-body);
    font-weight: 800; /* ExtraBold */
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
}

.c-step-num {
    font-family: 'Manrope', var(--font-body);
    font-weight: 800; /* ExtraBold */
    color: rgba(255,255,255,0.4);
    font-size: 1rem;
    margin: 0 0 0.3rem 0;
}

.c-body, .c-step-text, .c-commission-subtext {
    font-family: 'Manrope', var(--font-body);
    font-weight: 400; /* Regular */
    color: rgba(255,255,255,0.8); /* 80% opacity */
    line-height: 1.6;
    margin: 0;
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
}

.c-card-body {
    font-family: 'Manrope', var(--font-body);
    font-weight: 300; /* Light */
    color: rgba(255,255,255,0.7); /* 70% opacity */
    line-height: 1.5;
    margin: 0;
    font-size: clamp(0.85rem, 1.1vw, 0.95rem); /* Slightly smaller */
}

.c-statement-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
    max-width: 800px;
    margin: 60px auto;
}

/* 3. SECTION-BY-SECTION ARCHITECTURE */

/* A. THE HERO (Left-Aligned, Spline Exclusive) */
.c-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Upper-middle alignment zone */
    padding: 0 8vw 15vh; /* Additional 15vh bottom padding heavily lifting the block to upper-mid left */
    position: relative;
    overflow: hidden; /* Contain Spline */
}

/* Seamless Spline to Scroll Masking */
.c-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25vh;
    background: linear-gradient(to bottom, transparent, #000000);
    z-index: 5;
    pointer-events: none;
}

/* Spline contained exclusively in Hero */
#spline-hero-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Subtle overlay on Hero */
.spline-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1; 
}

.c-hero-content {
    max-width: 60%; /* Keep the right side clear */
    position: relative;
    z-index: 10;
    text-align: left;
}

.c-hero-title {
    font-size: clamp(2.1rem, 4.25vw, 4.67rem); /* Reduced main headline by exactly ~15% for Luxury Minimalist feel */
    margin-bottom: 2rem;
}

.c-hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

/* "Fusión Signature" buttons */
.c-btn {
    font-family: 'Manrope', var(--font-body);
    font-weight: 600; /* SemiBold */
    padding: 15px 30px; /* Small/Medium Compact */
    border: 1.5px solid #ffffff;
    background: transparent;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border-radius: 0; /* Perfectly rectangular */
    transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.c-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* B. THE MANIFESTO (Centered, Solid Black BG) */
.c-manifesto-content {
    max-width: 750px;
}

.c-heading-manifesto {
    font-size: clamp(2.5rem, 4vw, 4rem); /* Reduced to 3.5rem / 4rem equivalent */
    margin-bottom: 1.2rem;
}

/* C. CONTENT GRID (Academy Modules - Dynamic Staggered Layout) */
.c-academy-title {
    font-family: 'Monument Extended', var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    margin: 0 0 80px 0; /* Exact 80px module separation */
    text-align: center;
}

.c-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px; /* Tightly grouped */
    margin: 40px 0; /* Significant top/bottom isolation margin */
    align-items: start; /* Required for the stagger effect */
}

.c-card {
    position: relative;
    text-align: left; /* Shift from center for infographic layout */
    padding: 60px 40px; /* Space for the background number */
    background: rgba(255, 255, 255, 0.02); /* Very subtle card structure */
    border: 1px solid rgba(255, 255, 255, 0.05); /* Very subtle border */
    overflow: hidden; /* Contain bleeding numbers */
    z-index: 1;
}

.c-card:nth-child(even) {
    transform: translateY(60px); /* The Stagger Effect */
}

/* Big Graphic Number */
.c-card-bg-number {
    position: absolute;
    top: -15px; /* Bleeds into the top margin */
    left: -5px; /* Bleeds left slightly */
    font-family: 'Monument Extended', var(--font-heading);
    font-size: 8rem; /* Massive graphic scale */
    color: rgba(255, 255, 255, 0.03); /* Very low opacity */
    z-index: -1;
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
}

/* D. WORKFLOW (Agency Timeline) */
.c-agency-title {
    font-family: 'Monument Extended', var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    color: #ffffff;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    margin: 0 0 100px 0;
    text-align: center;
}

.c-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0 0 0;
}

.c-timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.c-timeline-item {
    position: relative;
    margin-bottom: 100px; /* 100px separation per node */
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    text-align: center;
}

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

.c-timeline-node {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 0 0 15px #000000; /* Black void shadow masks the intersecting line perfectly */
}

.c-timeline-content {
    background-color: transparent;
    padding: 0 20px;
}

.c-timeline-title {
    font-family: 'Manrope', var(--font-body);
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 8px 0;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.c-timeline-desc {
    font-family: 'Manrope', var(--font-body);
    font-weight: 400; /* Regular */
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
}

/* FINAL CLOSURE */
.c-final-closure {
    text-align: center;
    margin-top: 150px;
}

.c-closure-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #ffffff;
    font-size: clamp(1.5rem, 2.5vw, 3rem); /* Re-scaled to match Home */
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* 5. ANIMATIONS & REVEAL OVERRIDES */
.creators-page .hidden-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.creators-page .visible-animate {
    opacity: 1;
    transform: translateY(0);
}

.c-delay-1 { transition-delay: 0.1s; }
.c-delay-2 { transition-delay: 0.2s; }
.c-delay-3 { transition-delay: 0.3s; }
.c-delay-4 { transition-delay: 0.4s; }

/* Timeline Edge case delayed rendering */
.c-timeline-line {
    opacity: 0;
    animation: drawLine 1.5s ease 0.5s forwards;
}
@keyframes drawLine {
    to { opacity: 1; }
}

/* 4. SPACING & DESIGN BEST PRACTICES */
/* Responsive behavior */
@media (max-width: 1024px) {
    .c-hero-content {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .c-hero-content {
        max-width: 100%;
    }
    /* Monument Extended 30% reduction */
    .c-hero-title, .c-heading-manifesto, .c-academy-title, .c-agency-title {
        font-size: clamp(1.8rem, 5vw, 3.2rem) !important;
    }

    .c-grid-2, .c-stats-grid {
        grid-template-columns: 1fr !important;
    }
    .c-hero-btns {
        flex-direction: column;
    }
}

/* ─────────────────────────────────────────
   CREATORS STATS BLOCK (Count-Up Impact)
───────────────────────────────────────── */
.c-stats-block {
    background: #000000;
    padding: 140px 8vw 120px;
    text-align: center;
}

.c-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 100px;
}

.c-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.c-stat-number {
    font-family: 'Monument Extended', 'Archivo Black', sans-serif;
    font-weight: 900;
    font-size: clamp(3.5rem, 9vw, 8rem);
    color: #ffffff;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.04em;
}

.c-stat-label {
    font-family: 'Monument Extended', 'Archivo Black', sans-serif;
    font-weight: 900;
    font-size: clamp(0.7rem, 1vw, 0.9rem);
    color: #ffffff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.c-stat-sub {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 220px;
    line-height: 1.5;
    text-align: center;
}

/* Closing statement */
.c-stats-closing {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 80px;
    max-width: 800px;
    margin: 0 auto;
}

.c-stats-frase {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.4rem, 2.2vw, 2.5rem);
    color: #ffffff;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.c-stats-frase strong {
    font-style: italic;
    font-weight: 700;
}

@media (max-width: 768px) {
    .c-stats-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .c-stats-block {
        padding: 80px 6vw;
    }
}
