:root {
    --dominant: #02010A;
    --secondary: #F7F9F9;
    --secondary-muted: rgba(247, 249, 249, 0.6);
    --border: rgba(247, 249, 249, 0.1);
    --accent: #1985A1;
    --accent-hover: #136a82;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--dominant);
    color: var(--secondary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3 { font-weight: 600; letter-spacing: -0.02em; }
h1 { font-size: 5.2rem; margin-bottom: 2rem; position: relative; z-index: 2; line-height: 1.05; }
h2 { font-size: 3rem; margin-bottom: 2rem; }
h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- BUTTON STYLES --- */
.cta-btn {
    display: inline-block;
    padding: 24px 60px;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    background-color: var(--accent);
    border: none;
    border-radius: 60px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 8px 0 #0D4A5A;
    background-color: var(--accent);
}

.cta-btn:active {
    transform: translateY(-2px) scale(1.15);
    box-shadow: 0 2px 0 #0D4A5A;
}

.container { max-width: 1300px; margin: 0 auto; padding-left: 2rem; padding-right: 2rem; }

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 4rem 0;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2, 1, 10, 0.7), rgba(2, 1, 10, 0.95));
    z-index: 1;
}

.hero-content { position: relative; z-index: 2; width: 100%; }

.brand-block {
    display: inline-flex; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    text-decoration: none;
    color: var(--secondary);
    cursor: pointer;
}

.brand-logo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    transform: scale(3);
    transform-origin: center center;
    margin-bottom: 60px;
    transition: transform 0.3s ease;
}

.brand-block:hover .brand-logo {
    transform: scale(3.1);
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    margin-right: -0.5em;
    margin-bottom: 0;
    position: relative;
}

.accent-word {
    color: var(--accent);
    font-size: 1.25em;
    font-weight: 700;
    text-transform: uppercase;
}

.creator-section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
    background-color: rgba(255,255,255,0.01);
}

/* --- THE FIX: FORCING 5 ITEMS ON ONE ROW --- */
.creator-grid {
    display: grid;
    /* This forces exactly 5 columns of equal width */
    grid-template-columns: repeat(5, 1fr); 
    gap: 1.5rem; 
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    align-items: start;
}

.creator-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.creator-avatar {
    width: 130px; /* Slightly smaller to ensure fit */
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 2px solid var(--border);
}

.creator-name { 
    font-weight: 700; 
    font-size: 1.6rem; /* Slightly smaller font for better fit */
    margin-bottom: 0.2rem; 
    line-height: 1.2;
}

.creator-subs { 
    color: var(--accent); 
    font-size: 1.2rem; 
    font-weight: 600; 
}

section {
    padding: 8rem 2rem;
    border-bottom: 1px solid rgba(247, 249, 249, 0.25);
}

.detailed-case { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; margin-bottom: 8rem; }
.detailed-case:nth-child(even) { grid-template-columns: 1fr 1.2fr; }
.detailed-case:nth-child(even) .video-wrapper { order: 2; }
.detailed-case:nth-child(even) .content-wrapper { order: 1; }
.detailed-case:last-child { margin-bottom: 0; }

.video-thumbnail {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #000;
    aspect-ratio: 16 / 9; 
    cursor: pointer;
}

.video-thumbnail img { 
    width: 100%; 
    height: 100%; 
    display: block; 
    object-fit: cover; 
    transition: transform 0.4s ease; 
}

.video-thumbnail:hover img { transform: scale(1.05); opacity: 0.7; }

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
}

.play-button::before {
    content: "";
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent white;
    margin-left: 4px;
}

.testimonial-img { max-width: 100%; border-radius: 12px; border: 1px solid var(--border); margin-top: 2rem; box-shadow: 0 20px 40px rgba(0,0,0,0.6); }

.creator-tag {
    display: inline-block;
    background: rgba(25, 133, 161, 0.1);
    color: var(--accent);
    padding: 0.6rem 1.4rem; 
    border-radius: 30px;
    font-size: 1.1rem; 
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.minimal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

.minimal-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 12px; padding: 2.5rem; }
.stat-highlight { display: inline-block; margin-top: 1.5rem; background-color: var(--accent); padding: 0.5rem 1.1rem; border-radius: 6px; font-weight: 700; }

footer { padding: 8rem 0; text-align: center; }

/* MOBILE FIXES */
@media (max-width: 1024px) {
    .creator-grid {
        /* Drop to 3 columns on tablets so it doesn't get too squashed */
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container { padding-left: 1.5rem; padding-right: 1.5rem; }
    
    .hero { padding: 2rem 0; }
    .brand-block { margin-bottom: 1rem; }

    .brand-logo {
        width: 160px;
        height: 160px;
        transform: none !important;
        margin-bottom: 10px;
    }

    .brand-block:hover .brand-logo {
        transform: scale(1.05) !important;
    }

    .brand-name { 
        font-size: 1.4rem; 
        letter-spacing: 0.4em; 
        margin-bottom: 1rem;
    }

    h1 { 
        font-size: 2.8rem; 
        margin-bottom: 2rem; 
        line-height: 1.1;
        padding: 0 5px;
    }
    
    .creator-grid {
        /* Drop to 2 columns on mobile phones */
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }
    
    .creator-avatar {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    .creator-name {
        font-size: 1.2rem;
    }
    .creator-subs { font-size: 1rem; }

    .detailed-case, .detailed-case:nth-child(even) { grid-template-columns: 1fr; gap: 3rem; }
    .detailed-case:nth-child(even) .video-wrapper { order: 0; }
    .detailed-case:nth-child(even) .content-wrapper { order: 0; }

    .minimal-grid { grid-template-columns: 1fr; }
    section { padding: 4rem 1rem; }
    
    .cta-btn { padding: 18px 45px; font-size: 20px; }
    .creator-tag { padding: 0.5rem 1.2rem; font-size: 1rem; }
}