/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #09090b;
    --white: #FFFFFF;
    --red: #FF0000;
    --red-dark: #CC0000;
    --gray-100: #F5F5F5;
    --gray-300: #CCCCCC;
    --gray-400: #999999;
    --gray-500: #888888;
    --gray-600: #666666;
    --gray-800: #1A1A1A;
    --gray-900: #111111;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 0.3s var(--ease);
    --transition-slow: 0.6s var(--ease);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--gray-900);
}
::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--red-dark);
}


body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 100%;
    width: 80%;
    margin: 0 auto;
    padding: 0;
}

/* ===== Utility ===== */
.text-red {
    color: var(--red);
}

.red-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    margin-right: 8px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

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

.section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--white);
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 500px;
    margin-bottom: 48px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
}

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

.btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 14px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
    animation: navFadeIn 0.8s var(--ease) 0.1s;
}

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

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    width: 100%;
    padding: 0 48px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    height: 56px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--red);
    line-height: 1;
}

.logo-sub {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--gray-500);
    line-height: 1;
    margin-top: 2px;
}

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

.nav-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gray-400);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--red);
    transition: var(--transition);
}

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

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

.nav-cta {
    padding: 10px 20px;
    font-size: 11px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    width: 80%;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

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

.hero-badge {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gray-400);
}

.hero-title {
    margin-bottom: 24px;
}

.hero-line {
    display: block;
    font-size: clamp(48px, 6.5vw, 84px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -2px;
}

.hero-accent {
    color: var(--red);
}

.hero-description {
    font-size: 16px;
    color: var(--gray-400);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-logo-wrapper {
    width: 100%;
    max-width: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-logo-large {
    position: relative;
    width: 100%;
}

.hero-logo-large .logo-red {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(255, 0, 0, 0.25));
    display: block;
    opacity: 0;
    animation: revealRedLogo 2.2s var(--ease) forwards;
    animation-delay: 0.3s;
}

.hero-logo-large .logo-ghost {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 40px rgba(255, 255, 255, 0.5));
    display: block;
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
    animation: revealGhostLogo 2.2s var(--ease) forwards;
    animation-delay: 0.3s;
}

/* Logo periodic shine */
.hero-logo-large::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    background-size: 200% 100%;
    background-repeat: no-repeat;
    -webkit-mask-image: url("assets/red-zero-logo.png");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("assets/red-zero-logo.png");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    pointer-events: none;
    opacity: 0;
    animation: fadeInShine 0.5s ease forwards;
    animation-delay: 1.5s;
}

@keyframes revealGhostLogo {
    0% {
        opacity: 0.8;
        transform: scale(1.18);
        filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(255, 255, 255, 0.6)) blur(3px);
    }
    60% {
        opacity: 0.3;
        transform: scale(1.04);
    }
    100% {
        opacity: 0;
        transform: scale(1);
        filter: brightness(0) invert(1) drop-shadow(0 0 0px rgba(255, 255, 255, 0)) blur(0px);
    }
}

@keyframes revealRedLogo {
    0% {
        opacity: 0;
        transform: scale(0.82);
    }
    40% {
        opacity: 0.7;
    }
    70% {
        transform: scale(1.03);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Periodic glow pulse after intro */
@keyframes logoGlow {
    0%, 90%, 100% {
        filter: drop-shadow(0 0 40px rgba(255, 0, 0, 0.25));
    }
    94% {
        filter: drop-shadow(0 0 45px rgba(255, 0, 0, 0.3));
    }
}

@keyframes fadeInShine {
    to { opacity: 1; }
}

@keyframes logoShine {
    0% { background-position: -200% 0; }
    25% { background-position: 200% 0; }
    100% { background-position: 200% 0; }
}

.hero-logo-label {
    text-align: center;
    margin-top: 16px;
}

.hero-logo-name {
    display: block;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--red);
}

.hero-logo-sub {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 6px;
    color: var(--gray-500);
    margin-top: 4px;
}

.hero-stats {
    width: 80%;
    margin: 60px auto 0;
    padding: 0;
    display: flex;
    gap: 60px;
    position: relative;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.stat {
    padding-top: 30px;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gray-500);
}

/* ===== Services Section ===== */
.services {
    padding: 120px 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--gray-900);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
}

.service-card:hover {
    border-color: rgba(255, 0, 0, 0.2);
    transform: translateY(-4px);
    background: rgba(255, 0, 0, 0.03);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-list li {
    font-size: 14px;
    color: var(--gray-400);
    padding-left: 16px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    background: var(--red);
    border-radius: 50%;
}

/* ===== Process Section ===== */
.process {
    padding: 120px 0;
    background: var(--gray-900);
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -16px;
    width: 32px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    transition: var(--transition);
}

.process-step:hover .process-number {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.6), 0 0 20px rgba(255, 0, 0, 0.4);
    color: var(--white);
}

.process-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-desc {
    font-size: 14px;
    color: var(--gray-500);
}

/* ===== Creators Section ===== */
.creators {
    padding: 120px 0 0;
    position: relative;
}

.creators .section-title,
.creators .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.creators .section-header {
    justify-content: center;
}

.carousel-wrapper {
    position: relative;
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
}

.carousel-track-container {
    overflow: hidden;
    flex: 1;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.creator-card {
    flex: 0 0 calc(25% - 14px);
    margin: 0 7px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--gray-900);
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.creator-card.active {
    border-color: var(--red);
}

.creator-card:hover {
    transform: translateY(-4px);
}

.creator-card-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.creator-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creator-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
    color: var(--gray-600);
    font-size: 48px;
    font-weight: 800;
}

.creator-card-info {
    padding: 16px;
}

.creator-card-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.creator-card-role {
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.creator-card-followers {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.creator-card-followers svg {
    width: 14px;
    height: 14px;
    opacity: 0.5;
}

.carousel-arrow {
    flex: 0 0 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-600);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--red);
    width: 24px;
    border-radius: 4px;
}

/* Ready to Join CTA */
.creators-cta {
    text-align: center;
    padding: 80px 24px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 120px 0;
    position: relative;
    text-align: center;
}

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

.cta-section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.cta-section-subtitle {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

/* ===== Footer ===== */
.footer {
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo-icon {
    height: 48px;
    width: auto;
}

.footer-tagline {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 16px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.social-icon:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.footer-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-links li {
    font-size: 14px;
    color: var(--gray-500);
    transition: var(--transition);
}

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

/* Make plain list items in the footer also respond to hover */
.footer-links li:hover,
.footer-links li:hover a {
    color: var(--white) !important;
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: var(--gray-600);
}

/* ===== Reveal Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease),
                transform 0.8s var(--ease);
}

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

/* Hero Stagger Reveals */
.hero-badge.reveal {
    transition-delay: 0.1s;
}

.hero-title .hero-line:nth-child(1).reveal {
    transition-delay: 0.2s;
}

.hero-title .hero-line:nth-child(2).reveal {
    transition-delay: 0.3s;
}

.hero-title .hero-line:nth-child(3).reveal {
    transition-delay: 0.4s;
}

.hero-description.reveal {
    transition-delay: 0.5s;
}

.hero-buttons.reveal {
    transition-delay: 0.6s;
}



.hero-stats.reveal {
    transition-delay: 0.75s;
}

/* Stagger delays */
.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.08s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.16s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.24s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.32s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.4s; }
.services-grid .service-card:nth-child(7) { transition-delay: 0.48s; }
.services-grid .service-card:nth-child(8) { transition-delay: 0.56s; }
.services-grid .service-card:nth-child(9) { transition-delay: 0.64s; }

.process-grid .process-step:nth-child(1) { transition-delay: 0s; }
.process-grid .process-step:nth-child(2) { transition-delay: 0.15s; }
.process-grid .process-step:nth-child(3) { transition-delay: 0.3s; }
.process-grid .process-step:nth-child(4) { transition-delay: 0.45s; }

/* Text Metallic Shine */
.hero-accent, .text-red {
    background: linear-gradient(90deg, var(--red) 0%, var(--red) 35%, var(--white) 50%, var(--red) 65%, var(--red) 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 5s linear infinite;
    display: inline-block;
    padding-bottom: 0.12em;
    margin-bottom: -0.12em;
    padding-right: 0.05em;
    margin-right: -0.05em;
    overflow: visible;
}

/* ===== Marquee Section ===== */
.marquee-section {
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    background: var(--black);
    position: relative;
    z-index: 2;
}

.marquee-track {
    display: flex;
    align-items: center;
    animation: marquee 50s linear infinite;
    width: max-content;
    will-change: transform;
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.marquee-item {
    flex-shrink: 0;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    white-space: nowrap;
    padding: 0 40px;
    color: transparent;
    -webkit-text-stroke: 1px #71717a;
    transition: all 0.3s ease;
}

.marquee-item.filled {
    color: var(--white);
    -webkit-text-stroke: 0;
}

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



/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .container,
    .nav-container,
    .hero-container,
    .hero-stats {
        width: 90%;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-logo-large {
        max-width: 250px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .creator-card {
        flex: 0 0 calc(50% - 14px);
    }
}

@media (max-width: 768px) {
    .container,
    .nav-container,
    .hero-container,
    .hero-stats {
        width: 92%;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-line {
        font-size: clamp(40px, 10vw, 60px);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat {
        padding-top: 20px;
    }

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

    .process-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .creator-card {
        flex: 0 0 calc(100% - 14px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .carousel-wrapper {
        padding: 0 8px;
    }

    .carousel-arrow {
        flex: 0 0 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Mobile Nav Menu ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gray-400);
}

.mobile-nav a:hover {
    color: var(--white);
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ===== Selection ===== */
::selection {
    background: var(--red);
    color: var(--white);
}

/* ===== Creator Profile Modal ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 24px;
}

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

.modal-content {
    background: var(--gray-900);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-content::-webkit-scrollbar {
    width: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-400);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.modal-body {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 550px;
}

.modal-photo {
    position: relative;
    overflow: hidden;
    border-radius: 16px 0 0 16px;
    background: var(--black);
}

.modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-info {
    padding: 32px;
}

.modal-name {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.modal-role {
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.modal-bio {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 24px;
}

.modal-section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.modal-following-section {
    margin-bottom: 24px;
}

.modal-following-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.modal-following-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.modal-following-item:hover {
    border-color: rgba(255, 0, 0, 0.3);
    background: rgba(255, 0, 0, 0.03);
}

.modal-following-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-following-icon svg {
    width: 18px;
    height: 18px;
}

.modal-following-icon.tiktok { background: rgba(255, 0, 80, 0.15); color: #FF0050; }
.modal-following-icon.youtube { background: rgba(255, 0, 0, 0.15); color: #FF0000; }
.modal-following-icon.instagram { background: rgba(225, 48, 108, 0.15); color: #E1306C; }
.modal-following-icon.twitch { background: rgba(145, 70, 255, 0.15); color: #9146FF; }
.modal-following-icon.twitter { background: rgba(29, 161, 242, 0.15); color: #1DA1F2; }
.modal-following-icon.kick { background: rgba(83, 232, 139, 0.15); color: #53E88B; }

.modal-following-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
}

.modal-following-count {
    font-size: 11px;
    color: var(--gray-500);
}

.modal-stats-section {
    margin-bottom: 24px;
}

.modal-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.modal-stat {
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.modal-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 2px;
}

.modal-stat-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gray-500);
}

.modal-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.modal-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-400);
    transition: var(--transition);
}

.modal-social-link:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.modal-social-link svg {
    width: 14px;
    height: 14px;
}

.modal-social-link .social-text-wrapper {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.modal-social-link .platform-name {
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.modal-social-link .platform-count {
    color: var(--gray-500);
    font-size: 11px;
    transition: var(--transition);
}

.modal-social-link:hover .platform-name,
.modal-social-link:hover .platform-count {
    color: var(--white);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-photo {
        border-radius: 16px 16px 0 0;
        max-height: 300px;
    }

    .modal-photo img {
        min-height: 250px;
        max-height: 300px;
    }

    .modal-info {
        padding: 24px;
    }

    .modal-following-grid {
        grid-template-columns: 1fr;
    }

    .modal-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
