/* Font loaded via <link> in HTML for better performance */

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

:root {
    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-900: #171717;

    --primary: #FE3842;
    --primary-light: #FF5A62;
    --primary-dark: #E5323A;
    --accent: #FE3842;
    --accent-cyan: #4DFFFF;
}

html {
    scroll-behavior: smooth;
}

/* ================================
   VIDEO LOADING ANIMATION
   ================================ */
@keyframes video-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* These containers already have position set in their own rules;
   ::before pseudo-elements just need the parent to be positioned,
   which they already are (relative, absolute, etc.) */

.tiktok-video-container::before,
.grid-video-card::before,
.floating-video-card::before,
.review-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, transparent 70%);
    animation: video-pulse 1.8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
    transition: opacity 0.4s ease;
}

.tiktok-video-container.video-loaded::before,
.grid-video-card.video-loaded::before,
.floating-video-card.video-loaded::before,
.review-card.video-loaded::before {
    opacity: 0;
    animation: none;
}

.tiktok-video-container video,
.grid-video-card video,
.floating-video-card video,
.review-card video {
    opacity: 1;
    transition: opacity 0.5s ease;
}

body {
    font-family: 'Poppins', -apple-system, sans-serif;
    /* Muted warm neutral gradient */
    background: linear-gradient(270deg, #ffffff, #fafaf9, #f7f6f4, #faf9f8, #ffffff);
    background-size: 400% 400%;
    animation: subtleGradient 15s ease infinite;
    color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

@keyframes subtleGradient {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

/* Fade-in animation for scroll reveal (desktop only) */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* On mobile: disable ALL scroll-triggered fade-ins — show everything immediately */
@media (max-width: 768px) {
    .fade-in-element {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .no-hassle-headline {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .highlight-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* Case studies section — skip animate-in requirement */
    .case-studies-section:not(.animate-in) .section-title-center,
    .case-studies-section:not(.animate-in) .industry-sidebar,
    .case-studies-section:not(.animate-in) .tab-content,
    .case-studies-section:not(.animate-in) .case-study-card,
    .case-studies-section:not(.animate-in) .floating-video-card {
        opacity: 1;
    }

    .case-studies-section .section-title-center,
    .case-studies-section .industry-sidebar,
    .case-studies-section .tab-content,
    .case-studies-section .tab-pane.active .case-study-card,
    .case-studies-section .tab-pane.active .case-study-logo,
    .case-studies-section .tab-pane.active .case-study-desc,
    .case-studies-section .tab-pane.active .case-study-metrics .metric,
    .case-studies-section .tab-pane.active .case-study-info .btn-primary,
    .case-studies-section .tab-pane.active .floating-video-card {
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
    }

    /* Pricing section */
    .pricing-perk-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

::selection {
    background: var(--primary);
    color: white;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* ================================
   NAVIGATION - Liquid Glass (iOS 26 Style)
   ================================ */
.nav {
    position: fixed;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.nav-container {
    padding: 12px 16px;
    /* Liquid Glass Effect */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.6) 100%
    );
    backdrop-filter: blur(40px) saturate(200%) brightness(1.1);
    -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.1);
    border-radius: 24px;
    /* Subtle gradient border for glass edge effect */
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 1px rgba(255, 255, 255, 0.8),
        inset 0 -1px 1px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Liquid shimmer highlight */
.nav-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    animation: liquidShimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes liquidShimmer {
    0%, 100% { left: -100%; opacity: 0; }
    10% { opacity: 1; }
    50% { left: 100%; opacity: 1; }
    60%, 100% { opacity: 0; }
}

/* Top light reflection */
.nav-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.9) 50%,
        transparent 100%
    );
    pointer-events: none;
}

.nav.scrolled .nav-container {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.75) 100%
    );
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06),
        inset 0 1px 1px rgba(255, 255, 255, 0.9),
        inset 0 -1px 1px rgba(0, 0, 0, 0.03);
}

.nav-logo {
    display: flex;
    align-items: center;
    padding: 0px 16px;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.logo-mark {
    height: 40px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.nav-link:hover {
    color: var(--black);
    background: rgba(0, 0, 0, 0.05);
}

.nav-cta {
    color: var(--white);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.95) 100%);
    padding: 10px 24px;
    margin-left: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: translateY(-1px);
    box-shadow:
        0 6px 16px rgba(254, 56, 66, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

/* Hamburger & Mobile Nav -- hidden on desktop */
.nav-hamburger {
    display: none;
}

.nav-mobile-menu {
    display: none;
}

/* Desktop: nav-top-row is transparent flex wrapper */
.nav-top-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ================================
   HERO - MAIN (New)
   ================================ */
.hero-main {
    position: relative;
    padding: 160px 0 40px;
    background: transparent;
    overflow-x: clip;
    overflow-y: visible;
}

.hero-background-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: meshFloat 20s infinite alternate;
}

.mesh-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #f5f4f2 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    right: -100px;
}

.mesh-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #f7f6f4 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

@keyframes meshFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.badge-icon {
    font-size: 16px;
}

.hero-headline {
    font-size: clamp(44px, 5.5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: 24px;
    max-width: 700px;
}

.rotating-text-wrapper {
    display: inline-block;
    position: relative;
    /* Ensure line breaks in text work as expected */
    white-space: normal; 
}

.rotating-text {
    display: inline-block;
}

.smaller-text {
    font-size: 0.85em;
}

/* Word animation styles */
.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: wordReveal 0.5s cubic-bezier(0.2, 0, 0.2, 1) forwards;
    animation-delay: calc(var(--word-index) * 0.15s);
    margin-right: 0.25em; /* Space between words */
}

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

/* Keep gradient text styling but allow word splitting */
.gradient-text-anim .word {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s linear infinite, wordReveal 0.5s cubic-bezier(0.2, 0, 0.2, 1) forwards;
    /* Re-apply delay */
    animation-delay: 0s, calc(var(--word-index) * 0.15s);
}

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

.hero-subheadline {
    font-size: 20px;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 40px;
    max-width: 540px;
}

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

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px 12px 18px;
    background: var(--white);
    color: var(--black);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1.5px solid var(--black);
}

.store-badge:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.store-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-subtitle {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-title {
    font-size: 18px;
    font-weight: 600;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    color: var(--black);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--black);
    background: var(--gray-50);
}

.btn-secondary svg {
    width: 20px;
    height: 20px;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatars-stack {
    display: flex;
}

.avatar-mini {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
    margin-left: -12px;
}

.avatar-mini:first-child {
    margin-left: 0;
}

.hero-visual-3d {
    position: relative;
    height: 600px;
    perspective: 1000px;
}

/* ================================
   TARGETING & ENGAGEMENT COMPONENTS
   ================================ */
.targeting-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-900);
}

.targeting-icon {
    font-size: 16px;
}

.targeting-map {
    position: relative;
    height: 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.map-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.08) 1px, transparent 1px);
    background-size: 12px 12px;
}

.location-pin {
    position: absolute;
    opacity: 0;
    animation: pinDrop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay);
}

.pin-dot {
    display: block;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: pinPulse 2s ease-out infinite;
    animation-delay: calc(var(--delay) + 0.5s);
}

@keyframes pinDrop {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pinPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.targeting-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.targeting-tag {
    padding: 4px 10px;
    background: rgba(254, 56, 66, 0.1);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
}

.engagement-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.engagement-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trend-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(254, 56, 66, 0.1);
    color: var(--primary);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
}

.engagement-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
}

.engagement-percent {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.engagement-bars {
    display: flex;
    gap: 8px;
    height: 80px;
    align-items: flex-end;
    margin-bottom: 16px;
    padding: 0 4px;
}

.engagement-bar {
    flex: 1;
    background: var(--primary);
    border-radius: 6px;
    height: 0;
    animation: barGrowUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(0.9s + var(--i) * 0.08s);
}

@keyframes barGrowUp {
    0% {
        height: 0;
    }
    100% {
        height: var(--height);
    }
}

.engagement-metrics {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
}

.metric {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--gray-50);
    border-radius: 20px;
}

.metric-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.metric-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.metric-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-900);
}

/* Advertiser Floating Cards */
.advertiser-visual .card-targeting {
    position: absolute;
    top: -5%;
    right: -80px;
    width: 260px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    animation: cardSlideInRight 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               floatTargeting 6s ease-in-out infinite;
    animation-delay: 0.5s, 1.1s;
    z-index: 10;
}

@keyframes cardSlideInRight {
    0% {
        opacity: 0;
        transform: translateX(40px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes floatTargeting {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.advertiser-visual .card-targeting .targeting-header {
    font-size: 13px;
    margin-bottom: 12px;
    font-weight: 600;
}

.advertiser-visual .card-targeting .targeting-map {
    height: 120px;
    margin-bottom: 12px;
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
}

.advertiser-visual .card-targeting .world-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(100%);
}

.advertiser-visual .card-targeting .targeting-tag {
    font-size: 11px;
    padding: 5px 10px;
}

.advertiser-visual .card-engagement {
    position: absolute;
    bottom: -5%;
    right: -60px;
    width: 220px;
    padding: 16px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.04);
    opacity: 0;
    animation: cardSlideInRight 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               floatEngagement 7s ease-in-out infinite;
    animation-delay: 0.7s, 1.4s;
    z-index: 10;
}

@keyframes floatEngagement {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.advertiser-visual .card-engagement .engagement-header {
    margin-bottom: 12px;
}

.advertiser-visual .card-engagement .engagement-title {
    font-size: 13px;
}

.advertiser-visual .card-engagement .engagement-percent {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

.advertiser-visual .card-engagement .engagement-bars {
    height: 60px;
    gap: 6px;
    margin-bottom: 12px;
}

/* Gray bars with red accent on last bar */
.advertiser-visual .card-engagement .engagement-bar {
    background: #e5e7eb;
}

.advertiser-visual .card-engagement .engagement-bar:last-child {
    background: #ef4444;
}

.advertiser-visual .card-engagement .engagement-metrics {
    padding-top: 10px;
}

.advertiser-visual .card-engagement .metric {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    gap: 6px;
}

.advertiser-visual .card-engagement .metric-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--primary);
}

.advertiser-visual .card-engagement .metric-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.advertiser-visual .card-engagement .metric-value {
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
}

/* AI Quality Analysis Card */
.card-ai-quality {
    position: absolute;
    bottom: 15%;
    left: -30px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 3px solid #e0f2fe;
    border-right-color: #fce7f3;
    border-bottom-color: #fce7f3;
    opacity: 0;
    animation: cardSlideInLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               floatAI 6s ease-in-out infinite;
    animation-delay: 0.6s, 1.2s;
    z-index: 10;
    min-width: 140px;
}

@keyframes floatAI {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.card-ai-quality .ai-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
}

.card-ai-quality .ai-icon svg {
    width: 100%;
    height: 100%;
}

.card-ai-quality .ai-content {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.card-ai-quality .ai-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.card-ai-quality .ai-score {
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-ai-quality .ai-arrow {
    color: #10b981;
    font-size: 14px;
    font-weight: 600;
}

.card-ai-quality .ai-percent {
    color: #10b981;
    font-size: 16px;
    font-weight: 700;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    transform-style: preserve-3d;
    z-index: 2;
    opacity: 0;
    animation: cardPopIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cardPopIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleUpNotif {
    0% {
        opacity: 0;
        transform: translate(20px, 0) rotateY(-5deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(20px, 0) rotateY(-5deg) scale(1);
    }
}

@keyframes scaleUpSub {
    0% {
        opacity: 0;
        transform: translate(0, 0) rotateY(-5deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0) rotateY(-5deg) scale(1);
    }
}

.hero-device-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    max-width: none;
    height: auto;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.25));
    animation: deviceFadeIn 0.8s ease-out forwards, deviceFloat 6s ease-in-out infinite;
    animation-delay: 0s, 0.8s;
    opacity: 0;
    z-index: 3;
}

@keyframes deviceFadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -45%) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes deviceFloat {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, calc(-50% - 20px)); }
}

.card-main {
    top: 15%;
    left: -60px;
    width: 220px;
    height: auto;
    padding: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    z-index: 4;
    transform: rotateY(-5deg) rotateX(3deg);
    opacity: 0;
    animation: scaleUpMain 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               mainCardFloat 7s ease-in-out infinite;
    animation-delay: 0.5s, 1.1s;
    border-radius: 16px;
}

@keyframes scaleUpMain {
    0% {
        opacity: 0;
        transform: rotateY(-5deg) rotateX(3deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: rotateY(-5deg) rotateX(3deg) scale(1);
    }
}

.card-small {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 16px;
    background: white;
    z-index: 5;
}

.card-notification {
    top: 20%;
    right: 0;
    animation: scaleUpNotif 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               notifFloat 5s ease-in-out infinite;
    animation-delay: 0.3s, 0.9s;
}

/* Video Tile Card - 3D Tilting Animation */
.card-video-tile {
    bottom: 5%;
    left: 50px;
    width: 140px;
    height: 210px;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    transform-style: preserve-3d;
    z-index: 10;
    animation: scaleUpVideoTile 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               videoTileTilt3D 8s ease-in-out infinite;
    animation-delay: 0.6s, 1.2s;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 10px 20px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

@keyframes scaleUpVideoTile {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) scale(1);
    }
}

@keyframes videoTileTilt3D {
    0%, 100% {
        transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(0);
    }
    25% {
        transform: perspective(1000px) rotateY(-8deg) rotateX(8deg) translateY(-8px);
    }
    50% {
        transform: perspective(1000px) rotateY(5deg) rotateX(3deg) translateY(-5px);
    }
    75% {
        transform: perspective(1000px) rotateY(-12deg) rotateX(10deg) translateY(-10px);
    }
}

.video-tile-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.tile-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.tile-video.active {
    opacity: 1;
}

.tile-video:first-child {
    opacity: 1;
}

.video-tile-overlay {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
}

.tiktok-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: white;
    border-radius: 6px;
}

.tiktok-badge svg {
    width: 16px;
    height: 16px;
}

.card-brand-collab {
    bottom: 15%;
    right: -30px;
    animation: scaleUpSub 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               collabFloat 7s ease-in-out infinite;
    animation-delay: 0.9s, 1.5s;
    z-index: 5;
}

@keyframes subFloat {
    0%, 100% { transform: translate(0, 0) rotateY(-5deg) scale(1); }
    50% { transform: translate(0, -10px) rotateY(-5deg) scale(1); }
}

@keyframes collabFloat {
    0%, 100% { transform: translate(0, 0) rotateY(-5deg) scale(1); }
    50% { transform: translate(0, -12px) rotateY(-8deg) scale(1); }
}

@keyframes notifFloat {
    0%, 100% { transform: translate(20px, 0) rotateY(-5deg) scale(1); }
    50% { transform: translate(20px, -15px) rotateY(-5deg) scale(1); }
}

.notif-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

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

.notif-text .title {
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
}

.notif-text .desc {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
}

.card-glass-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.glass-header {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.glass-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.glass-dot.red { background: #FF5F56; }
.glass-dot.yellow { background: #FFBD2E; }
.glass-dot.green { background: #27C93F; }

.earning-graph {
    display: flex;
    flex-direction: column;
}

.graph-header {
    margin-bottom: 0;
}

.graph-header .label {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 600;
    margin-bottom: 2px;
}

.graph-header .amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.5px;
    opacity: 0;
    animation: fadeInAmount 0.5s ease forwards;
    animation-delay: 1s;
}

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

.graph-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100px;
    gap: 6px;
    margin-top: 12px;
}

.bar {
    flex: 1;
    background: var(--gray-200);
    border-radius: 4px;
    transition: height 1s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.bar.active {
    background: var(--primary);
}

.bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255,255,255,0.5), transparent);
    opacity: 0.3;
}

@keyframes mainCardFloat {
    0%, 100% { transform: rotateY(-5deg) rotateX(3deg) translateY(0); }
    50% { transform: rotateY(-3deg) rotateX(2deg) translateY(-15px); }
}

/* ================================
   TRUSTED BRANDS
   ================================ */
.trusted-brands {
    padding: 0 0 80px;
    background: transparent;
}

.brands-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-400);
    margin-top: 30px;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.brand-logo-img {
    height: 40px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .brands-grid {
        gap: 40px;
    }

    .brand-logo-img {
        height: 32px;
    }
}

/* ================================
   HERO - SCROLL MORPH
   ================================ */
.hero-scroll-morph {
    min-height: 300vh;
    position: relative;
    background: transparent;
    overflow: hidden;
}

/* Big Bold Background Statement */
.bg-statement {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.bg-statement.visible {
    opacity: 0.07;
}

.bg-statement-line {
    font-size: clamp(80px, 15vw, 200px);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: var(--black);
    text-transform: uppercase;
    white-space: nowrap;
}

.bg-statement-line:nth-child(2) {
    color: var(--primary);
}

/* Scroll Indicator for Dot State */
.scroll-indicator-dot {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 15;
}

.scroll-indicator-dot.visible {
    opacity: 1;
}

.scroll-indicator-dot span {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    letter-spacing: 0.15em;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    color: var(--gray-400);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 100%;
    height: 100%;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Tap Hint - Pulsing circle on campaign */
.tap-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.campaign-item .tap-hint.visible {
    opacity: 1;
}

.tap-hint-dot {
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.tap-hint-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    animation: tapPulse 1.5s ease-out infinite;
}

@keyframes tapPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.4;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: orbFloat 25s ease-in-out infinite;
}

.orb-1 {
    width: 800px;
    height: 800px;
    background: linear-gradient(135deg, #FFE8E9 0%, #FFF0F1 100%);
    top: -300px;
    left: -200px;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #FFF0F1 0%, #FFE8E9 100%);
    bottom: -200px;
    right: -100px;
    animation-delay: -10s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #FFF5F6 0%, #FFE8E9 100%);
    top: 40%;
    right: 20%;
    animation-delay: -5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 120px;
    align-items: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: var(--gray-100);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.label-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.4); }
}

.hero-title {
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-bottom: 48px;
    color: var(--black);
}

.title-line {
    overflow: hidden;
    padding: 12px 0;
}

.char {
    display: inline-block;
    animation: charSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

@keyframes charSlideUp {
    0% {
        opacity: 0;
        transform: translateY(150%) rotateX(-90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.char:nth-child(1) { animation-delay: 0.05s; }
.char:nth-child(2) { animation-delay: 0.1s; }
.char:nth-child(3) { animation-delay: 0.15s; }
.char:nth-child(4) { animation-delay: 0.2s; }
.char:nth-child(5) { animation-delay: 0.25s; }
.char:nth-child(6) { animation-delay: 0.3s; }
.char:nth-child(7) { animation-delay: 0.35s; }
.char:nth-child(8) { animation-delay: 0.4s; }

.gradient-word {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientFlow 4s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 22px;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 60px;
    max-width: 680px;
    font-weight: 400;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 60px;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--gray-200);
}

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

.stat-number {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--gray-200);
}

.hero-cta {
    display: flex;
    gap: 20px;
}

/* ================================
   BUTTONS
   ================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--black);
    color: white;
    border: none;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover::before {
    transform: translateY(0);
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5px;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.btn-large {
    padding: 14px 28px;
    font-size: 15px;
}

/* Morph Container - Fixed Positioning within viewport */
.morph-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.morph-container * {
    pointer-events: auto;
}

/* Skip Animation Button */
.skip-animation-btn {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.skip-animation-btn.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.skip-animation-btn:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--black);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.skip-animation-btn svg {
    width: 16px;
    height: 16px;
}

/* Step Indicators */
.step-indicators {
    position: absolute;
    right: calc(50% + 230px);
    top: 50%;
    transform: translateY(-50%) translateX(-20px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s ease 0.6s, right 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}

.step-indicators-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    padding-left: 4px;
}

.step-indicators.visible {
    opacity: 1;
    visibility: visible;
    right: calc(50% + 60px);
    transform: translateY(-50%) translateX(0);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s ease 0s, right 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    min-width: 220px;
}

.step-indicator:hover {
    border-color: var(--gray-400);
}

.step-indicator.active {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 32px rgba(255, 77, 77, 0.15);
}

.step-indicator.completed .step-number {
    background: var(--gray-400);
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-300);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.step-indicator.active .step-number {
    background: var(--primary);
    transform: scale(1.1);
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.step-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--black);
}

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

.step-indicator.active .step-title {
    color: var(--primary);
}

/* Adjust morph container layout for steps */
.morph-container {
    gap: 60px;
}

.morph-shape {
    position: relative;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    transition: all 0.1s linear, opacity 0.3s ease, margin-left 0.6s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 0 rgba(255, 77, 77, 0);
    opacity: 1;
    margin-left: 0;
}

/* Phone shifts right when steps are visible - offset to center combined layout */
.morph-shape.shifted-right {
    margin-left: 280px;
}

/* Phone Shape State */
.morph-shape.phone-shape {
    width: 340px;
    height: 680px;
    border-radius: 48px;
    background: #ffffff;
    box-shadow:
        0 0 0 12px rgba(0, 0, 0, 0.08),
        0 40px 120px rgba(0, 0, 0, 0.2);
}

/* Phone Content */
.phone-content {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease 0.2s, visibility 0s ease 0.6s;
    padding: 16px 0 20px;
    color: var(--black);
    overflow: hidden;
}

.morph-shape.phone-shape.content-ready .phone-content {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease 0.1s, visibility 0s ease 0s;
}

/* App Header */
.app-header {
    padding: 8px 20px 16px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.morph-shape.phone-shape.content-ready .app-header {
    opacity: 1;
    transform: translateY(0);
}

.app-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--black);
    margin: 0;
}

.wepush-logo {
    display: block;
    height: 48px;
    width: auto;
    object-fit: contain;
    background: white;
    padding: 12px 18px;
    border-radius: 14px;
    margin: 0 auto 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Campaign List */
.campaign-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 8px;
    overflow: hidden;
}

.campaign-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
    background: transparent;
    border-radius: 12px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.campaign-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.campaign-image {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    flex-shrink: 0;
}

.campaign-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.campaign-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.platform-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    padding: 3px;
    box-sizing: border-box;
}

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

.platform-icon.tiktok {
    background: #000;
    color: #fff;
}

.platform-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.campaign-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 10px;
}

.campaign-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.campaign-artist {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.campaign-play {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.campaign-play svg {
    width: 16px;
    height: 16px;
    color: var(--black);
    margin-left: 2px;
}

.campaign-play:hover {
    background: var(--gray-100);
}

/* Campaign item tap/highlight effect */
.campaign-item.tapped {
    background: rgba(0, 0, 0, 0.08);
    transform: scale(0.97);
    animation: tapFlash 0.5s ease-in-out infinite;
}

@keyframes tapFlash {
    0%, 100% {
        background: rgba(0, 0, 0, 0.04);
    }
    50% {
        background: rgba(0, 0, 0, 0.12);
    }
}

/* App Views - iOS style transitions */
.app-view {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.4s ease;
}

.campaign-list-view {
    position: relative;
    transform: translateX(0);
    opacity: 1;
}

.campaign-list-view.slide-out {
    transform: translateX(-30%);
    opacity: 0.5;
}

.campaign-detail-view {
    transform: translateX(100%);
    opacity: 1;
    padding: 20px;
    overflow-y: auto;
    background: #ffffff;
}

.campaign-detail-view.slide-in {
    transform: translateX(0);
}

.campaign-detail-view.slide-out {
    transform: translateX(-30%);
    opacity: 0.5;
}

/* Detail View Styles */
.detail-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--gray-900);
    border-radius: 16px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.detail-cover {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    flex-shrink: 0;
}

.detail-song-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.detail-song-name {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.detail-artist {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.detail-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.detail-play-btn svg {
    width: 18px;
    height: 18px;
    color: var(--black);
    margin-left: 2px;
}

/* Detail Meta */
.detail-meta {
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-meta.visible {
    opacity: 1;
    transform: translateY(0);
}

.detail-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.detail-label {
    font-size: 12px;
    color: var(--gray-500);
}

.detail-platforms {
    display: flex;
    gap: 6px;
}

.platform-icon.spotify {
    background: #1DB954;
    color: white;
    font-size: 14px;
}

.detail-earnings {
    display: flex;
    gap: 32px;
}

.earning-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.earning-label {
    font-size: 11px;
    color: var(--gray-500);
}

.earning-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--black);
}

.earning-note {
    font-size: 9px;
    color: var(--gray-400);
}

.earning-goal {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

/* Detail Briefing */
.detail-briefing {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-briefing.visible {
    opacity: 1;
    transform: translateY(0);
}

.detail-briefing h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.briefing-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: #FEF2F2;
    border-radius: 12px;
    margin-bottom: 12px;
}

.alert-icon {
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.briefing-alert span:last-child {
    font-size: 12px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4;
}

.briefing-text {
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 8px;
}

.briefing-list {
    list-style: disc;
    padding-left: 20px;
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Detail CTA */
.detail-cta {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.join-campaign-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.join-campaign-btn .btn-main {
    font-size: 14px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.join-campaign-btn .btn-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

/* Join button tap effect */
.join-campaign-btn.tapped {
    transform: scale(0.92);
    background: #333;
    animation: btnTapFlash 0.35s ease-in-out infinite;
    box-shadow: 0 0 0 4px rgba(254, 56, 66, 0.3);
}

@keyframes btnTapFlash {
    0%, 100% {
        transform: scale(0.92);
        box-shadow: 0 0 0 4px rgba(254, 56, 66, 0.2);
    }
    50% {
        transform: scale(0.95);
        box-shadow: 0 0 0 8px rgba(254, 56, 66, 0.4);
    }
}

.btn-small {
    padding: 16px 32px;
    font-size: 15px;
}

/* Success View */
.success-view {
    transform: translateX(100%);
    opacity: 1;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-view.slide-in {
    transform: translateX(0);
}

.success-view.slide-out {
    transform: translateX(-30%);
    opacity: 0.5;
}

.success-content {
    text-align: center;
    padding: 40px 24px;
}

/* Animated Checkmark */
.success-check {
    margin-bottom: 24px;
}

.checkmark {
    width: 80px;
    height: 80px;
}

.checkmark-circle {
    stroke: #4CAF50;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-linecap: round;
}

.checkmark-check {
    stroke: #4CAF50;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
}

.success-view.slide-in .checkmark-circle {
    animation: checkCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    animation-delay: 0.2s;
}

.success-view.slide-in .checkmark-check {
    animation: checkStroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    animation-delay: 0.8s;
}

@keyframes checkCircle {
    0% {
        stroke-dashoffset: 166;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes checkStroke {
    0% {
        stroke-dashoffset: 48;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 8px;
}

.success-subtitle {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0 0 24px;
}

.success-details {
    margin-bottom: 20px;
}

.success-campaign {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: 12px;
}

.success-campaign-image {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    flex-shrink: 0;
}

.success-campaign-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.success-campaign-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}

.success-campaign-earning {
    font-size: 12px;
    font-weight: 600;
    color: #4CAF50;
}

.success-message {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0 0 24px;
}

.success-cta {
    margin-top: auto;
}

.success-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--black);
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

.success-btn span {
    font-size: 14px;
    font-weight: 700;
    color: white;
}

/* TikTok Post View */
.tiktok-post-view {
    transform: translateX(100%);
    opacity: 1;
    background: #000;
    display: flex;
    flex-direction: column;
}

.tiktok-post-view.slide-in {
    transform: translateX(0);
}

.tiktok-post-view.slide-out {
    transform: translateX(-30%);
    opacity: 0.5;
}

.tiktok-post-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.tiktok-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    margin-bottom: 16px;
}

.tiktok-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    background: white;
    padding: 8px 12px;
    border-radius: 10px;
}

.tiktok-preview {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.tiktok-video-preview {
    width: 80px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-overlay {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
}

.tiktok-caption {
    flex: 1;
}

.tiktok-caption p {
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

.tiktok-options {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tiktok-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.option-icon {
    font-size: 18px;
}

.option-label {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

.tiktok-post-cta {
    padding: 16px 0;
}

.tiktok-post-btn {
    width: 100%;
    padding: 14px;
    background: #FE2C55;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tiktok-post-btn span {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.tiktok-post-btn.tapped {
    transform: scale(0.95);
    background: #d91a40;
    animation: tiktokBtnFlash 0.35s ease-in-out infinite;
}

@keyframes tiktokBtnFlash {
    0%, 100% {
        transform: scale(0.95);
    }
    50% {
        transform: scale(0.98);
    }
}

/* TikTok elements appear one by one */
.tiktok-element {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tiktok-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Views Progress View */
.views-progress-view {
    transform: translateX(100%);
    opacity: 1;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.views-progress-view.slide-in {
    transform: translateX(0);
}

.views-progress-view.slide-out {
    transform: translateX(-30%);
    opacity: 0.5;
}

.views-progress-content {
    padding: 24px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* TikTok Video Preview in Views Screen */
.views-video-preview {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.views-video-thumbnail {
    width: 200px;
    height: 360px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.views-video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.views-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.views-video-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--black);
    padding-left: 2px;
}

.views-video-tiktok-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: white;
    border-radius: 6px;
    padding: 4px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.views-tiktok-logo {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.views-header {
    margin-bottom: 32px;
}

.views-campaign-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.views-campaign-cover {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    flex-shrink: 0;
}

.views-campaign-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.views-campaign-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.views-campaign-status {
    font-size: 13px;
    color: #4CAF50;
    font-weight: 500;
}

.views-counter {
    text-align: center;
    margin-bottom: 24px;
}

.views-label {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.views-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--black);
    letter-spacing: -0.02em;
    line-height: 1;
}

.views-progress-wrapper {
    margin-bottom: 32px;
}

.views-progress-bar {
    height: 12px;
    background: var(--gray-200);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}

.views-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 6px;
    transition: width 0.3s ease;
}

.views-progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gray-500);
}

.views-target {
    font-weight: 600;
    color: var(--black);
}

.views-earning-preview {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.earning-preview-label {
    font-size: 14px;
    color: var(--gray-600);
}

.earning-preview-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

/* Goal Reached Celebration */
.views-progress-view.goal-reached .views-number {
    color: var(--primary);
    animation: goalPulse 0.6s ease-out;
}

.views-progress-view.goal-reached .views-progress-fill {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    animation: goalShine 1s ease-out;
}

.views-progress-view.goal-reached .views-target {
    color: var(--primary);
    font-weight: 700;
}

.views-progress-view.goal-reached .earning-preview-value {
    animation: goalPulse 0.6s ease-out 0.2s both;
}

/* Confetti container */
.views-progress-content {
    position: relative;
    overflow: hidden;
}

.views-counter {
    position: relative;
}

.views-progress-view.goal-reached .views-progress-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Crect fill='%234CAF50' x='0' y='0' width='10' height='10' rx='2'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Crect fill='%23FFD700' x='0' y='0' width='8' height='8' rx='1'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Ccircle fill='%23FF6B6B' cx='3' cy='3' r='3'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Crect fill='%2300BCD4' x='0' y='0' width='8' height='8' rx='1'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Ccircle fill='%239C27B0' cx='3' cy='3' r='3'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='7'%3E%3Crect fill='%23E91E63' x='0' y='0' width='7' height='7' rx='1'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9'%3E%3Ccircle fill='%23FF9800' cx='4.5' cy='4.5' r='4.5'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='5'%3E%3Crect fill='%232196F3' x='0' y='0' width='5' height='5'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Ccircle fill='%23FFEB3B' cx='4' cy='4' r='4'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Crect fill='%2300E676' x='0' y='0' width='6' height='6' rx='1'/%3E%3C/svg%3E");
    background-size: 10px 10px, 8px 8px, 6px 6px, 8px 8px, 6px 6px, 7px 7px, 9px 9px, 5px 5px, 8px 8px, 6px 6px;
    background-position:
        5% -20px,
        15% -35px,
        25% -15px,
        35% -28px,
        45% -12px,
        55% -32px,
        65% -18px,
        75% -25px,
        85% -10px,
        95% -22px;
    background-repeat: no-repeat;
    animation: confettiFall 2s ease-out forwards;
    opacity: 0;
}

.views-progress-view.goal-reached .views-progress-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Crect fill='%23FF9800' x='0' y='0' width='8' height='8' rx='1'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Ccircle fill='%234CAF50' cx='3' cy='3' r='3'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Crect fill='%23E91E63' x='0' y='0' width='10' height='10' rx='2'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Ccircle fill='%23FFD700' cx='3' cy='3' r='3'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='7'%3E%3Crect fill='%233F51B5' x='0' y='0' width='7' height='7' rx='1'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9'%3E%3Ccircle fill='%23F44336' cx='4.5' cy='4.5' r='4.5'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='5'%3E%3Crect fill='%2300BCD4' x='0' y='0' width='5' height='5'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Ccircle fill='%239C27B0' cx='4' cy='4' r='4'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Crect fill='%23CDDC39' x='0' y='0' width='6' height='6' rx='1'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='7'%3E%3Ccircle fill='%23FF5722' cx='3.5' cy='3.5' r='3.5'/%3E%3C/svg%3E");
    background-size: 8px 8px, 6px 6px, 10px 10px, 6px 6px, 7px 7px, 9px 9px, 5px 5px, 8px 8px, 6px 6px, 7px 7px;
    background-position:
        8% -30px,
        18% -12px,
        28% -38px,
        38% -20px,
        48% -8px,
        58% -35px,
        68% -15px,
        78% -28px,
        88% -5px,
        98% -18px;
    background-repeat: no-repeat;
    animation: confettiFall2 2s ease-out 0.15s forwards;
    opacity: 0;
}

/* Third wave of confetti */
.views-progress-view.goal-reached .views-counter::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -20px;
    right: -20px;
    bottom: -200px;
    pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Crect fill='%23FFC107' x='0' y='0' width='6' height='6' rx='1'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Ccircle fill='%238BC34A' cx='4' cy='4' r='4'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='7'%3E%3Crect fill='%23673AB7' x='0' y='0' width='7' height='7' rx='1'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='5'%3E%3Ccircle fill='%23FF4081' cx='2.5' cy='2.5' r='2.5'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9'%3E%3Crect fill='%2303A9F4' x='0' y='0' width='9' height='9' rx='2'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Ccircle fill='%23FFEB3B' cx='3' cy='3' r='3'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Crect fill='%23009688' x='0' y='0' width='8' height='8' rx='1'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='5'%3E%3Ccircle fill='%23FF6F00' cx='2.5' cy='2.5' r='2.5'/%3E%3C/svg%3E");
    background-size: 6px 6px, 8px 8px, 7px 7px, 5px 5px, 9px 9px, 6px 6px, 8px 8px, 5px 5px;
    background-position:
        12% -25px,
        32% -40px,
        52% -18px,
        72% -33px,
        22% -8px,
        42% -45px,
        62% -22px,
        82% -15px;
    background-repeat: no-repeat;
    animation: confettiFall3 2.2s ease-out 0.3s forwards;
    opacity: 0;
}

@keyframes confettiFall {
    0% {
        opacity: 1;
        background-position:
            5% -20px,
            15% -35px,
            25% -15px,
            35% -28px,
            45% -12px,
            55% -32px,
            65% -18px,
            75% -25px,
            85% -10px,
            95% -22px;
    }
    100% {
        opacity: 0;
        background-position:
            2% 130%,
            18% 115%,
            22% 140%,
            38% 120%,
            42% 135%,
            58% 125%,
            62% 145%,
            78% 118%,
            82% 138%,
            92% 128%;
    }
}

@keyframes confettiFall2 {
    0% {
        opacity: 1;
        background-position:
            8% -30px,
            18% -12px,
            28% -38px,
            38% -20px,
            48% -8px,
            58% -35px,
            68% -15px,
            78% -28px,
            88% -5px,
            98% -18px;
    }
    100% {
        opacity: 0;
        background-position:
            5% 125%,
            22% 140%,
            25% 118%,
            42% 132%,
            45% 145%,
            62% 122%,
            65% 138%,
            82% 128%,
            85% 142%,
            95% 135%;
    }
}

@keyframes confettiFall3 {
    0% {
        opacity: 1;
        background-position:
            12% -25px,
            32% -40px,
            52% -18px,
            72% -33px,
            22% -8px,
            42% -45px,
            62% -22px,
            82% -15px;
    }
    100% {
        opacity: 0;
        background-position:
            8% 135%,
            35% 120%,
            48% 142%,
            75% 125%,
            25% 138%,
            45% 115%,
            58% 145%,
            85% 130%;
    }
}

@keyframes goalPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

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

/* Payment View */
.payment-view {
    transform: translateX(100%);
    opacity: 1;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 16px;
    overflow: visible;
}

.payment-view.slide-in {
    transform: translateX(0);
}

.payment-content {
    text-align: center;
    padding: 20px 24px;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.payment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    animation: paymentBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes paymentBounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.payment-view.slide-in .payment-icon {
    animation: paymentBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

.payment-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 8px;
}

.payment-subtitle {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0 0 24px;
}

.payment-amount {
    margin-bottom: 24px;
}

.payment-value {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.payment-label {
    font-size: 13px;
    color: var(--gray-500);
}

.payment-details {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.payment-row:not(:last-child) {
    border-bottom: 1px solid var(--gray-200);
}

.payment-row-label {
    font-size: 13px;
    color: var(--gray-500);
}

.payment-row-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}

.payment-status {
    color: var(--primary);
}

.payment-cta {
    margin-top: auto;
}

.payment-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--black);
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

.payment-btn span {
    font-size: 14px;
    font-weight: 700;
    color: white;
}

/* Money Rain Container */
.money-rain-container {
    position: absolute;
    top: -100px;
    left: -20px;
    right: -20px;
    bottom: -100px;
    pointer-events: none;
    overflow: visible;
    z-index: 10;
}

.money-particle {
    position: absolute;
    font-size: 24px;
    opacity: 0;
    will-change: transform, opacity;
}

/* Bottom Stats Elements */
.bottom-stats {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 48px;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.bottom-stats.visible {
    opacity: 1;
}

.bottom-stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bottom-stats-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.bottom-stats-value {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bottom-stats-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-400);
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--gray-50);
}

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

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

.stat-value {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-500);
    font-weight: 600;
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }

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

    .stat-value {
        font-size: 32px;
    }

    .stat-label {
        font-size: 12px;
    }
}

/* ================================
   ARTISTS SECTION
   ================================ */
.artists-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: transparent;
}

.artists-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.artists-lines-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.artists-content {
    position: relative;
    z-index: 1;
}

.artists-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--black);
    text-align: center;
    margin-bottom: 60px;
}

.artists-row {
    overflow: hidden;
    padding: 20px 0;
}

.artists-track {
    display: flex;
    gap: 40px;
    width: max-content;
}

.artists-row-left .artists-track {
    animation: artistsScrollLeft 60s linear infinite;
}

.artists-row-right .artists-track {
    animation: artistsScrollRight 60s linear infinite;
}

@keyframes artistsScrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes artistsScrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.artist-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-circle:hover {
    transform: scale(1.05);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

.artist-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .artists-section {
        padding: 60px 0;
    }

    .artists-title {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .artist-circle {
        width: 120px;
        height: 120px;
    }

    .artists-track {
        gap: 24px;
    }

    .artists-row {
        padding: 12px 0;
    }
}

/* Money Confetti */
.money-confetti {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
}

.money-emoji {
    position: absolute;
    font-size: 48px;
    opacity: 0;
    pointer-events: auto;
    transform-origin: center;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.money-emoji.dragging {
    cursor: grabbing;
    z-index: 1000;
}

.money-emoji.resting {
    cursor: grab;
}

/* ================================
   CREATIVITY CAROUSEL
   ================================ */
.creativity-carousel {
    padding: 40px 0 80px;
    background: transparent;
    overflow: hidden;
}

.carousel-header {
    text-align: center;
    margin-bottom: 80px;
}

.carousel-title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--black);
    text-align: center;
}

.text-accent {
    color: var(--primary);
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.creativity-carousel .carousel-track {
    display: flex;
    gap: 16px;
    padding: 0 16px;
    width: fit-content;
    animation: none;
}

.creativity-carousel .carousel-track-row1 {
    animation: scrollLeft 150s linear infinite !important;
}

.creativity-carousel .carousel-track-row2 {
    animation: scrollRight 150s linear infinite !important;
}

.creativity-carousel .carousel-track.paused,
.creativity-carousel .carousel-track-row1:hover,
.creativity-carousel .carousel-track-row2:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

.carousel-item {
    flex: 0 0 auto;
    width: 200px;
}

.tiktok-video-placeholder {
    width: 100%;
    height: 560px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
}

.tiktok-video-placeholder p {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-500);
    margin: 0;
    position: relative;
    z-index: 1;
}

.tiktok-video-container {
    width: 100%;
    height: 360px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    background: var(--gray-900);
}

.tiktok-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 30%, transparent 50%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 4px;
    pointer-events: none;
    /* Force GPU compositing layer so iOS doesn't render video on top */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 2;
}

.video-overlay > * {
    pointer-events: auto;
}

.brand-logo {
    position: absolute;
    top: 12px;
    left: 12px;
    height: 22px;
    width: auto;
    max-width: 70px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    pointer-events: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 3;
}

.tiktok-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.tiktok-link:hover {
    opacity: 0.8;
}

.tiktok-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.view-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 400;
}

.video-description {
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-600);
    text-align: center;
    margin: 0;
    padding: 0 8px;
}

@media (max-width: 768px) {
    .creativity-carousel {
        padding: 30px 0 60px;
    }

    .carousel-header {
        margin-bottom: 60px;
    }

    .carousel-item {
        width: 160px;
    }

    .tiktok-video-placeholder {
        height: 290px;
    }

    .tiktok-video-container {
        height: 290px;
    }

    .carousel-track {
        padding: 0 24px;
    }
}

@media (max-width: 480px) {
    .carousel-item {
        width: 130px;
    }

    .tiktok-video-container {
        height: 240px;
        border-radius: 14px;
    }

    .tiktok-video-container video {
        border-radius: 14px;
    }

    .video-overlay {
        border-radius: 14px;
        padding: 8px;
    }

    .brand-logo {
        height: 16px;
    }

    .tiktok-link {
        font-size: 10px;
    }

    .view-count {
        font-size: 9px;
    }
}

/* ================================
   MARQUEE
   ================================ */
.marquee-section {
    padding: 80px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
}

.marquee {
    display: flex;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 80px;
    padding-right: 80px;
    animation: marqueeScroll 40s linear infinite;
    white-space: nowrap;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.marquee-content span {
    font-size: 100px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 2px var(--gray-200);
}

.marquee-dot {
    font-size: 50px;
    -webkit-text-stroke: 0;
    color: var(--primary);
}

/* ================================
   SECTIONS
   ================================ */
section {
    padding: 180px 0;
}

.section-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 120px;
}

.section-number {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(56px, 6vw, 88px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.95;
    color: var(--black);
}

/* ================================
   WORK SECTION
   ================================ */
.work-section {
    background: transparent;
}

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

.work-item {
    position: relative;
    padding: 60px 48px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 32px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-item:hover {
    border-color: var(--black);
    transform: translateY(-12px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
}

.work-number {
    position: absolute;
    top: 48px;
    right: 48px;
    font-size: 140px;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
}

.work-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 48px;
    color: var(--primary);
}

.work-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--black);
}

.work-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 17px;
}

/* ================================
   FEATURES SECTION
   ================================ */
.features-section {
    background: var(--gray-50);
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
}

.features-showcase {
    display: grid;
    gap: 32px;
}

.feature-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    padding: 100px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 48px;
    margin-bottom: 32px;
}

.feature-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gray-100);
    color: var(--primary);
    border-radius: 100px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
    font-weight: 700;
}

.feature-title {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 32px;
    color: var(--black);
}

.feature-text {
    color: var(--gray-600);
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 48px;
}

.feature-metric {
    display: inline-block;
}

.metric-value {
    font-size: 96px;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.metric-label {
    font-size: 15px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.match-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.match-circle {
    position: relative;
    width: 140px;
    height: 140px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    background: white;
}

.match-pulse {
    position: absolute;
    inset: -24px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    animation: matchPulse 2.5s ease-out infinite;
}

@keyframes matchPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.match-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    position: relative;
}

.match-line::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
}

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

.feature-card {
    padding: 48px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 32px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
    border-color: var(--black);
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 32px;
    display: block;
}

.feature-card h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--black);
}

.feature-card p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.6;
}

/* ================================
   BENTO FEATURES SECTION
   ================================ */
.bento-features-section {
    background: var(--gray-50);
    padding: 140px 0;
}

.bento-header {
    text-align: center;
    margin-bottom: 80px;
}

.bento-title {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--black);
}

.bento-subtitle {
    font-size: 22px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.bento-more {
    text-align: center;
    margin-top: 40px;
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-500);
    font-style: italic;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 24px;
}

.bento-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 32px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    position: relative;
}

.bento-card:hover {
    border-color: var(--gray-400);
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

/* Bento Card Sizes */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
}

.bento-tall {
    grid-column: span 1;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.bento-wide {
    grid-column: span 2;
    grid-row: span 1;
    display: flex;
    align-items: center;
    gap: 60px;
}

.bento-wide.bento-2row {
    grid-row: span 2;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 48px;
}

.bento-wide.bento-2row .bento-visual-analytics {
    width: 100%;
    flex-direction: column;
    gap: 32px;
}

.bento-wide.bento-2row .analytics-chart {
    height: 160px;
}

.bento-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Bento Card Content */
.bento-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gray-100);
    color: var(--primary);
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 700;
    width: fit-content;
}

.bento-card-title {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--black);
}

.bento-card-text {
    color: var(--gray-600);
    font-size: 17px;
    line-height: 1.6;
}

.bento-small-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--black);
}

.bento-small-text {
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.5;
}

/* Bento Icon Wrapper */
.bento-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--gray-100);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.bento-icon {
    width: 32px;
    height: 32px;
}

/* Launch Visual - AI Matching Animation */
.bento-visual-launch {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    flex: 1;
}

.ai-matching-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    flex: 1;
    padding: 10px 0;
}

/* Campaign Brief Side */
.campaign-brief {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 14px;
    width: 140px;
    flex-shrink: 0;
}

.brief-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-200);
}

.brief-icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

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

.brief-header span {
    font-size: 9px;
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.targeting-criteria {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.criteria-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    animation: criteriaFadeIn 0.5s ease forwards;
    animation-delay: var(--delay);
    opacity: 0;
}

@keyframes criteriaFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.criteria-label {
    font-size: 9px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.criteria-value {
    font-size: 12px;
    font-weight: 600;
    color: var(--black);
}

/* AI Brain Center */
.ai-brain {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.brain-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: brainPulse 2s ease-in-out infinite;
}

.brain-icon {
    width: 20px;
    height: 20px;
    color: white;
}

@keyframes brainPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 0 20px 5px rgba(255, 68, 68, 0.2);
    }
}

.brain-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0.3;
}

.brain-ring.ring-1 {
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    animation: ringPulse 2s ease-out infinite;
}

.brain-ring.ring-2 {
    width: 65px;
    height: 65px;
    margin: -32.5px 0 0 -32.5px;
    animation: ringPulse 2s ease-out infinite 0.3s;
}

.brain-ring.ring-3 {
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    animation: ringPulse 2s ease-out infinite 0.6s;
}

@keyframes ringPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.scan-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: translateX(-50%);
    animation: scanRotate 3s linear infinite;
    transform-origin: center;
}

@keyframes scanRotate {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

/* Processing Text */
.processing-text {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    animation: processingBlink 1.5s ease-in-out infinite;
}

@keyframes processingBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

/* Connection Flow Lines */
.connection-flow {
    position: relative;
    flex: 1;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gray-200), var(--primary), var(--gray-200));
    background-size: 200% 100%;
    border-radius: 2px;
}

.flow-left .flow-line {
    animation: flowLineLeft 1.5s linear infinite;
}

.flow-right .flow-line {
    animation: flowLineRight 1.5s linear infinite;
}

@keyframes flowLineLeft {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

@keyframes flowLineRight {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.flow-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.flow-left .flow-dot.d1 {
    animation: dotFlowLeft 1.5s ease-in-out infinite;
}

.flow-left .flow-dot.d2 {
    animation: dotFlowLeft 1.5s ease-in-out infinite 0.5s;
}

.flow-left .flow-dot.d3 {
    animation: dotFlowLeft 1.5s ease-in-out infinite 1s;
}

.flow-right .flow-dot.d1 {
    animation: dotFlowRight 1.5s ease-in-out infinite;
}

.flow-right .flow-dot.d2 {
    animation: dotFlowRight 1.5s ease-in-out infinite 0.5s;
}

.flow-right .flow-dot.d3 {
    animation: dotFlowRight 1.5s ease-in-out infinite 1s;
}

@keyframes dotFlowLeft {
    0% {
        left: 100%;
        opacity: 0;
        transform: scale(0.5);
    }
    20% {
        opacity: 1;
        transform: scale(1);
    }
    80% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        left: 0%;
        opacity: 0;
        transform: scale(0.5);
    }
}

@keyframes dotFlowRight {
    0% {
        left: 0%;
        opacity: 0;
        transform: scale(0.5);
    }
    20% {
        opacity: 1;
        transform: scale(1);
    }
    80% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        left: 100%;
        opacity: 0;
        transform: scale(0.5);
    }
}

/* Creator Matches Side */
.creator-matches {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 12px;
    width: 160px;
    flex-shrink: 0;
}

.match-header {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--gray-200);
}

.match-count {
    font-size: 14px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: countPulse 2s ease-in-out infinite;
}

@keyframes countPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.match-header span:last-child {
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-500);
}

.matched-creators {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.creator-match {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    border-radius: 6px;
    padding: 5px 6px;
    animation: creatorSlideIn 0.6s ease forwards;
    animation-delay: var(--delay);
    opacity: 0;
    transform: translateX(20px);
}

@keyframes creatorSlideIn {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.creator-match .creator-avatar {
    width: 18px !important;
    height: 18px !important;
    border-radius: 50%;
    flex-shrink: 0;
}

.creator-match .creator-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
    flex: 1;
}

.creator-match .creator-name {
    font-size: 9px !important;
    font-weight: 600;
    color: var(--black);
    white-space: nowrap;
    line-height: 1;
    margin-bottom: 6px;
}

.creator-match .creator-stats {
    font-size: 8px !important;
    color: var(--gray-400);
    line-height: 1;
}

.creator-match .match-score {
    font-size: 8px !important;
    font-weight: 700;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    padding: 2px 4px;
    border-radius: 4px;
    flex-shrink: 0;
}

/* Video Carousel */
.video-carousel {
    margin-top: auto;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
    display: flex;
    gap: 8px;
    animation: scrollCarousel 15s linear infinite;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.video-item {
    flex-shrink: 0;
    width: 70px;
    height: 95px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background: var(--gray-200);
}

.video-item video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-views {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 3px 6px;
    border-radius: 4px;
    z-index: 1;
}

/* Region Tags */
.region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.region-tag {
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: 4px;
    animation: tagFadeIn 0.4s ease forwards;
    animation-delay: var(--delay);
    opacity: 0;
}

.region-tag.more {
    background: var(--primary);
    color: white;
}

@keyframes tagFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mini Map */
.mini-map {
    position: relative;
    width: 100%;
    margin-top: auto;
    opacity: 0.7;
}

.mini-map-img {
    width: 100%;
    height: auto;
    filter: grayscale(100%) opacity(0.4);
}

.mini-pin {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pinPulse 2s ease-in-out infinite;
    animation-delay: var(--delay);
}

.mini-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    transform: translate(-50%, -50%);
    animation: pinRipple 2s ease-out infinite;
    animation-delay: var(--delay);
}

@keyframes pinPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes pinRipple {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Creator Avatars Stack */
.creator-avatars-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px -48px;
    flex: 1;
    justify-content: center;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.avatar-row {
    display: flex;
    overflow: hidden;
}

.avatar-track {
    display: flex;
    gap: 12px;
    animation: scrollAvatars 20s linear infinite;
}

.avatar-row.reverse .avatar-track {
    animation: scrollAvatarsReverse 20s linear infinite;
}

@keyframes scrollAvatars {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollAvatarsReverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.avatar-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    object-fit: cover;
}

/* Analytics Visual */
.bento-visual-analytics {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.analytics-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
}

.chart-bar {
    flex: 1;
    background: var(--gray-200);
    border-radius: 8px 8px 4px 4px;
    height: var(--height);
    animation: chartGrow 1s ease-out forwards;
    animation-delay: var(--delay);
    transform-origin: bottom;
    transform: scaleY(0);
}

.chart-bar.highlight {
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
}

@keyframes chartGrow {
    to { transform: scaleY(1); }
}

.analytics-stats {
    display: flex;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.analytics-stats .stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.analytics-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 32px;
}

/* Sophisticated Analytics Dashboard */
.analytics-metrics-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.metric-card {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
}

.bento-card.visible .metric-card {
    animation: metricFadeIn 0.5s ease-out forwards;
}

.bento-card.visible .metric-card:nth-child(1) { animation-delay: 0s; }
.bento-card.visible .metric-card:nth-child(2) { animation-delay: 0.1s; }
.bento-card.visible .metric-card:nth-child(3) { animation-delay: 0.2s; }

@keyframes metricFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.metric-label {
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.metric-trend {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(-5px);
}

.bento-card.visible .metric-trend {
    animation: trendBounce 0.5s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes trendBounce {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.metric-trend.positive {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.metric-trend.negative {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.bento-card .metric-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--black);
    opacity: 0;
    transform: scale(0.5);
}

.bento-card.visible .metric-value {
    animation: valuePopIn 0.6s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes valuePopIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Main Chart */
.analytics-main-chart {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 20px;
    flex: 1;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.chart-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

.chart-legend {
    display: flex;
    gap: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-500);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-dot.views {
    background: var(--primary);
}

.legend-dot.engagement {
    background: var(--accent);
}

.line-chart-container {
    position: relative;
}

.line-chart {
    width: 100%;
    height: 120px;
}

.chart-area {
    fill: url(#chartGradient);
    fill: rgba(255, 0, 80, 0.1);
    opacity: 0;
}

.bento-card.visible .chart-area {
    animation: areaFadeIn 1s ease-out forwards;
}

.chart-line-views {
    stroke: var(--primary);
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.bento-card.visible .chart-line-views {
    animation: lineDrawIn 1.5s ease-out forwards;
}

.chart-line-engagement {
    stroke: var(--accent);
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
}

.bento-card.visible .chart-line-engagement {
    animation: lineDrawIn 1.5s ease-out 0.3s forwards;
}

.chart-dot {
    fill: var(--primary);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes lineDrawIn {
    to { stroke-dashoffset: 0; }
}

@keyframes areaFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes dotPulse {
    0%, 100% { r: 5; opacity: 1; }
    50% { r: 7; opacity: 0.8; }
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 11px;
    color: var(--gray-400);
}

/* Bottom Row */
.analytics-bottom-row {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.platform-breakdown {
    flex: 1;
    background: var(--gray-50);
    border-radius: 12px;
    padding: 16px;
}

.breakdown-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 12px;
}

.breakdown-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.breakdown-item {
    display: grid;
    grid-template-columns: 70px 1fr 40px;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(-10px);
}

.bento-card.visible .breakdown-item {
    animation: itemSlideIn 0.4s ease-out forwards;
}

.bento-card.visible .breakdown-item:nth-child(1) { animation-delay: 0.5s; }
.bento-card.visible .breakdown-item:nth-child(2) { animation-delay: 0.6s; }
.bento-card.visible .breakdown-item:nth-child(3) { animation-delay: 0.7s; }

@keyframes itemSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.breakdown-label {
    font-size: 12px;
    color: var(--black);
    font-weight: 500;
}

.breakdown-bar-wrapper {
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.breakdown-bar {
    height: 100%;
    width: var(--width);
    background: var(--primary);
    border-radius: 4px;
    transform-origin: left;
    transform: scaleX(0);
}

.bento-card.visible .breakdown-bar {
    animation: barGrow 0.8s ease-out forwards;
}

.bento-card.visible .breakdown-item:nth-child(1) .breakdown-bar { animation-delay: 0.6s; }
.bento-card.visible .breakdown-item:nth-child(2) .breakdown-bar { animation-delay: 0.7s; }
.bento-card.visible .breakdown-item:nth-child(3) .breakdown-bar { animation-delay: 0.8s; }

.breakdown-bar.secondary {
    background: var(--accent);
}

.breakdown-bar.tertiary {
    background: var(--gray-400);
}

@keyframes barGrow {
    to { transform: scaleX(1); }
}

.breakdown-value {
    font-size: 12px;
    font-weight: 600;
    color: var(--black);
    text-align: right;
}

/* Ring Chart */
.ring-chart-container {
    position: relative;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border-radius: 12px;
    padding: 20px;
}

.ring-chart {
    width: 80px;
    height: 80px;
}

.ring-progress {
    animation: ringFill 1.5s ease-out forwards;
    stroke-dasharray: 0 200;
}

@keyframes ringFill {
    to { stroke-dasharray: 160 200; }
}

.ring-label {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.ring-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
}

.ring-text {
    font-size: 10px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content Types Grid */
.content-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.content-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    background: var(--gray-50);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.content-type:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.content-type svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.content-type span {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
}

/* Workflow Visual */
.workflow-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    gap: 12px;
}

.workflow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.workflow-icon {
    width: 56px;
    height: 56px;
    background: var(--gray-100);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.workflow-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gray-600);
}

.workflow-icon.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.workflow-icon.active svg {
    color: white;
}

.workflow-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
}

.workflow-arrow {
    flex-shrink: 0;
}

.workflow-arrow svg {
    width: 20px;
    height: 20px;
}

/* Text Utilities */
.text-primary {
    color: var(--primary);
}

/* Buyout Visual */
.bento-buyout {
    background: linear-gradient(135deg, white 0%, #fff5f5 100%);
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.bento-visual-buyout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buyout-flow {
    display: flex;
    align-items: center;
    gap: 24px;
}

.buyout-content-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-preview {
    width: 100px;
    height: 70px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.content-preview svg {
    width: 32px;
    height: 32px;
    color: var(--gray-500);
}

.content-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.content-meta span {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
}

.meta-views {
    color: var(--primary) !important;
}

.buyout-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.buyout-arrow svg {
    width: 48px;
    height: 24px;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.5; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(4px); }
}

.buyout-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(254, 56, 66, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

.buyout-destinations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.destination-icon {
    width: 44px;
    height: 44px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: destinationPop 0.5s ease-out forwards;
    animation-delay: var(--delay);
    opacity: 0;
    transform: scale(0.8);
}

.destination-icon svg {
    width: 20px;
    height: 20px;
    color: var(--gray-600);
}

@keyframes destinationPop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Bento Responsive */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large {
        grid-column: span 2;
    }

    .bento-tall {
        grid-column: span 1;
    }

    .bento-wide {
        grid-column: span 2;
        flex-direction: column;
        align-items: flex-start;
    }

    .bento-medium {
        grid-column: span 2;
    }

    .bento-small {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .bento-features-section {
        padding: 80px 0;
    }

    .bento-title {
        font-size: 48px;
    }

    .bento-subtitle {
        font-size: 18px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bento-large,
    .bento-tall,
    .bento-wide,
    .bento-medium,
    .bento-small,
    .bento-card[style*="grid-column"] {
        grid-column: span 1 !important;
        grid-row: span 1;
    }

    .bento-large {
        padding: 40px;
    }

    .bento-card {
        padding: 32px;
    }

    .bento-card-title {
        font-size: 32px;
    }

    /* AI Matching Visual Responsive */
    .ai-matching-visual {
        flex-direction: column;
        gap: 24px;
    }

    .campaign-brief,
    .creator-matches {
        width: 100%;
    }

    .ai-brain {
        width: 70px;
        height: 70px;
    }

    .brain-core {
        width: 36px;
        height: 36px;
    }

    .brain-ring.ring-1 {
        width: 45px;
        height: 45px;
        margin: -22.5px 0 0 -22.5px;
    }

    .brain-ring.ring-2 {
        width: 55px;
        height: 55px;
        margin: -27.5px 0 0 -27.5px;
    }

    .brain-ring.ring-3 {
        width: 70px;
        height: 70px;
        margin: -35px 0 0 -35px;
    }

    .connection-flow {
        display: none;
    }

    .processing-text {
        bottom: -20px;
        font-size: 9px;
    }

    .targeting-criteria {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .criteria-item {
        width: calc(50% - 4px);
    }

    .matched-creators {
        flex-direction: row;
        gap: 6px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .creator-match {
        min-width: 120px;
        flex-shrink: 0;
    }

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

    .workflow-visual {
        flex-wrap: wrap;
        justify-content: center;
    }

    .workflow-arrow {
        display: none;
    }

    /* Analytics Dashboard Responsive */
    .analytics-metrics-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .metric-card {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .analytics-bottom-row {
        flex-direction: column;
    }

    .ring-chart-container {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }

    .breakdown-item {
        grid-template-columns: 60px 1fr 35px;
    }
}

/* ================================
   CREATOR BENTO FEATURES
   ================================ */
.creator-bento .bento-title {
    font-size: 56px;
}

/* Earnings Flow Visual */
.bento-visual-earnings {
    margin-top: 24px;
}

.earnings-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.earnings-video-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mini-video-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-50);
    padding: 12px 16px;
    border-radius: 12px;
    opacity: 0;
    animation: slideInLeft 0.5s ease forwards;
    animation-delay: var(--delay);
}

.bento-card.is-visible .mini-video-card {
    opacity: 1;
}

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

.mini-video-card .video-thumb {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.mini-video-card .video-thumb svg {
    width: 16px;
    height: 16px;
}

.mini-video-card .views {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.earnings-arrow {
    flex-shrink: 0;
}

.earnings-arrow svg {
    width: 48px;
    height: 24px;
}

.earnings-total .total-card {
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
    padding: 24px 32px;
    border-radius: 16px;
    text-align: center;
    color: white;
}

.earnings-total .total-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.earnings-total .total-amount {
    display: block;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.earnings-total .total-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Bento Campaign Stack (Deck of Cards) */
.bento-campaign-list {
    margin-top: auto;
    position: relative;
    height: 120px;
}

.bento-campaign-item {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

.bento-card.is-visible .bento-campaign-item {
    animation: stackIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.bento-card.is-visible .bento-campaign-item:nth-child(1) {
    animation-delay: 0.1s;
}

.bento-card.is-visible .bento-campaign-item:nth-child(2) {
    animation-delay: 0.2s;
}

.bento-card.is-visible .bento-campaign-item:nth-child(3) {
    animation-delay: 0.3s;
}

.bento-card.is-visible .bento-campaign-item:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes stackIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.bento-campaign-item:nth-child(1) {
    top: 0;
    z-index: 4;
}

.bento-card.is-visible .bento-campaign-item:nth-child(1) {
    animation-name: stackInFirst;
}

@keyframes stackInFirst {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.bento-campaign-item:nth-child(2) {
    top: 8px;
    z-index: 3;
}

.bento-card.is-visible .bento-campaign-item:nth-child(2) {
    animation-name: stackInSecond;
}

@keyframes stackInSecond {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 0.85;
        transform: scale(0.97) translateX(3%);
    }
}

.bento-campaign-item:nth-child(3) {
    top: 16px;
    z-index: 2;
}

.bento-card.is-visible .bento-campaign-item:nth-child(3) {
    animation-name: stackInThird;
}

@keyframes stackInThird {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 0.65;
        transform: scale(0.94) translateX(6%);
    }
}

.bento-campaign-item:nth-child(4) {
    top: 24px;
    z-index: 1;
}

.bento-card.is-visible .bento-campaign-item:nth-child(4) {
    animation-name: stackInFourth;
}

@keyframes stackInFourth {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 0.45;
        transform: scale(0.91) translateX(9%);
    }
}

.bento-card:hover .bento-campaign-item:nth-child(1) {
    transform: rotate(-2deg) translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.bento-card:hover .bento-campaign-item:nth-child(2) {
    transform: scale(0.97) translateX(3%) rotate(1deg);
    opacity: 0.9;
}

.bento-card:hover .bento-campaign-item:nth-child(3) {
    transform: scale(0.94) translateX(6%) rotate(2deg);
    opacity: 0.75;
}

.bento-card:hover .bento-campaign-item:nth-child(4) {
    transform: scale(0.91) translateX(9%) rotate(3deg);
    opacity: 0.55;
}

.bento-campaign-image {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    flex-shrink: 0;
}

.bento-campaign-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bento-campaign-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bento-campaign-icons .platform-icon {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-campaign-icons .platform-icon svg {
    width: 100%;
    height: 100%;
}

.bento-campaign-icons .platform-icon.tiktok {
    color: #000;
}

.bento-campaign-icons .platform-icon.instagram {
    color: #E1306C;
}

.bento-campaign-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
}

.bento-campaign-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bento-campaign-artist {
    font-size: 11px;
    color: var(--gray-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Creator Analytics */
.creator-analytics {
    width: 100%;
}

.earnings-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
    gap: 16px;
    padding: 16px 0;
}

.earning-bar {
    flex: 1;
    background: var(--gray-200);
    border-radius: 8px 8px 0 0;
    height: var(--height);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.earning-bar.active {
    background: var(--primary);
}

.earning-bar span {
    position: absolute;
    top: -24px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.earning-bar.active span {
    color: var(--primary);
}

.bento-card:hover .earning-bar span {
    opacity: 1;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
}

.chart-labels span {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 500;
}

/* Platform Icons Row */
.platform-icons-row {
    display: flex;
    gap: 32px;
    margin-left: auto;
}

.platform-icon-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.platform-icon-large svg {
    width: 48px;
    height: 48px;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.platform-icon-large span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
}

.platform-icon-large.tiktok:hover svg {
    color: #000;
}

.platform-icon-large.instagram:hover svg {
    color: #E1306C;
}

/* Platform Icons Stacked */
.platform-icons-stacked {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.platform-icon-small {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
}

.bento-card.is-visible .platform-icon-small {
    animation: bounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.bento-card.is-visible .platform-icon-small:nth-child(1) {
    animation-delay: 0.1s;
}

.bento-card.is-visible .platform-icon-small:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    70% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.platform-icon-small svg {
    width: 24px;
    height: 24px;
}

.platform-icon-small.tiktok {
    background: #000;
    color: white;
}

.platform-icon-small.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.bento-card.is-visible .platform-icon-small:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Goal Progress Visual - Compact */
.goal-card-compact {
    display: flex;
    gap: 20px;
    background: var(--gray-50);
    padding: 20px;
    border-radius: 16px;
}

.goal-card-left {
    flex-shrink: 0;
}

.goal-video-thumb {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.goal-video-thumb svg {
    width: 24px;
    height: 24px;
}

.goal-card-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

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

.goal-campaign-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.goal-reward-badge {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.goal-progress-compact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.goal-bar-compact {
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.goal-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary) 0%, #6366f1 100%);
    border-radius: 4px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card.is-visible .goal-bar-fill {
    width: var(--progress);
}

.goal-stats {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.goal-views {
    color: var(--gray-500);
}

.goal-percent {
    font-weight: 700;
    color: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease 1s;
}

.bento-card.is-visible .goal-percent {
    opacity: 1;
}

.goal-equation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 12px;
}

.equation-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.bento-card.is-visible .equation-item {
    opacity: 1;
    transform: translateX(0);
}

.bento-card.is-visible .equation-item:nth-child(1) {
    transition-delay: 0.3s;
}

.bento-card.is-visible .equation-arrow {
    transition-delay: 0.5s;
}

.bento-card.is-visible .equation-item:nth-child(3) {
    transition-delay: 0.7s;
}

.equation-arrow {
    opacity: 0;
    transition: opacity 0.4s ease 0.5s;
}

.bento-card.is-visible .equation-arrow {
    opacity: 1;
}

.equation-item svg {
    width: 20px;
    height: 20px;
}

.equation-item span {
    font-size: 14px;
    font-weight: 600;
}

.equation-item.success {
    color: #22c55e;
}

.equation-arrow {
    font-size: 20px;
    color: var(--gray-400);
    font-weight: 300;
}

/* Creator Dashboard Styles */
.creator-stats-row-top {
    display: flex;
    gap: 16px;
}

.stat-box {
    flex: 1;
    background: var(--gray-50);
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.bento-card.is-visible .stat-box {
    opacity: 1;
    transform: translateY(0);
}

.bento-card.is-visible .stat-box:nth-child(1) {
    transition-delay: 0.1s;
}

.bento-card.is-visible .stat-box:nth-child(2) {
    transition-delay: 0.2s;
}

.bento-card.is-visible .stat-box:nth-child(3) {
    transition-delay: 0.3s;
}

.stat-box.highlight {
    background: var(--primary);
}

.stat-box.highlight .stat-box-value,
.stat-box.highlight .stat-box-label {
    color: white;
}

.stat-box-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 4px;
}

.stat-box-label {
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.creator-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 24px;
}

.dashboard-chart-area {
    background: var(--gray-50);
    padding: 20px;
    border-radius: 16px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.chart-period-selector {
    display: flex;
    gap: 8px;
}

.chart-period-selector .period {
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-400);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.chart-period-selector .period.active {
    background: var(--primary);
    color: white;
}

.line-chart-wrapper {
    position: relative;
}

.creator-line-chart {
    width: 100%;
    height: 80px;
}

.chart-line-main {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawLine 1.5s ease forwards;
}

.bento-card.is-visible .chart-line-main {
    animation: drawLine 1.5s ease forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.chart-area-fill {
    opacity: 0;
    animation: fadeIn 0.5s ease 0.5s forwards;
}

.bento-card.is-visible .chart-area-fill {
    animation: fadeIn 0.5s ease 0.5s forwards;
}

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

.chart-dot-pulse {
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { r: 4; opacity: 1; }
    50% { r: 6; opacity: 0.7; }
}

.dashboard-campaigns-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.area-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mini-campaign-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mini-campaign-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-50);
    padding: 12px;
    border-radius: 12px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s ease;
}

.bento-card.is-visible .mini-campaign-card {
    opacity: 1;
    transform: translateX(0);
}

.bento-card.is-visible .mini-campaign-card:nth-child(1) {
    transition-delay: 0.3s;
}

.bento-card.is-visible .mini-campaign-card:nth-child(2) {
    transition-delay: 0.4s;
}

.bento-card.is-visible .mini-campaign-card:nth-child(3) {
    transition-delay: 0.5s;
}

.mini-campaign-card .campaign-color {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
}

.mini-campaign-card .campaign-details {
    flex: 1;
    min-width: 0;
}

.mini-campaign-card .campaign-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.campaign-progress-mini {
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-bar-mini {
    flex: 1;
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill-mini {
    height: 100%;
    width: 0;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.bento-card.is-visible .progress-fill-mini {
    width: inherit;
}

.campaign-progress-mini span {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    min-width: 28px;
}

/* Responsive for Creator Bento */
@media (max-width: 1024px) {
    .creator-bento .bento-title {
        font-size: 42px;
    }

    .platform-icons-row {
        margin-left: 0;
        margin-top: 24px;
    }

    .creator-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-campaigns-area {
        display: none;
    }

    .goal-equation {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .creator-bento .bento-title {
        font-size: 32px;
    }

    .goal-card-compact {
        flex-direction: column;
        gap: 16px;
    }

    .goal-video-thumb {
        width: 48px;
        height: 48px;
    }

    .goal-equation {
        flex-wrap: wrap;
        gap: 12px;
    }

    .creator-stats-row-top {
        flex-wrap: wrap;
    }

    .stat-box {
        min-width: calc(50% - 8px);
    }

    .stat-box-value {
        font-size: 20px;
    }
}

/* ================================
   CREATOR SPOTLIGHT - BENTO GRID
   ================================ */
.spotlight-section {
    background: transparent;
    padding: 120px 0;
}

.spotlight-section .section-header {
    margin-bottom: 48px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-500);
    margin-top: 16px;
    font-weight: 500;
}

/* Masonry Grid - Pinterest Style Layout */
.masonry-grid {
    columns: 3;
    column-gap: 24px;
    margin-top: 64px;
}

.bento-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    break-inside: avoid;
}

.bento-card:hover,
.bento-card.is-visible:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
    border-color: var(--gray-300);
}

/* Creator Cards with Video Background */
.bento-creator {
    position: relative;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Varying heights for Pinterest effect */
.creator-tall {
    height: 720px;
}

.creator-medium {
    height: 600px;
}

.creator-short {
    height: 500px;
}

.creator-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.creator-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 1;
}

.creator-video-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0) 100%);
    z-index: 2;
    pointer-events: none;
}

.creator-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 3;
    display: flex;
    flex-direction: column;
}

.creator-profile {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bento-creator .creator-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.creator-profile-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.creator-profile-name {
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.creator-profile-followers {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.creator-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    margin-bottom: 12px;
}

.creator-name {
    font-size: 26px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.creator-quote {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 16px;
    font-style: italic;
}

.creator-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.creator-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.creator-stat-pill .stat-icon {
    font-size: 14px;
    line-height: 1;
}

.bento-creator .creator-stat-pill .stat-value {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: inherit !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: inherit !important;
    background-clip: unset !important;
    letter-spacing: normal !important;
}

.bento-creator .creator-stat-pill.highlight .stat-value {
    color: white !important;
    -webkit-text-fill-color: white !important;
}

.bento-creator .creator-socials {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--gray-700);
}

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

.social-tiktok:hover {
    background: #000;
    color: #fff;
}

.social-ig:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.creator-learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 24px;
    background: white;
    color: var(--black);
    text-decoration: none;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
}

.creator-learn-more:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.bento-creator:hover .creator-learn-more {
    background: var(--primary);
    color: white;
}

/* Stats Card - Spans 2 columns */
.bento-stats {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b6b 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 24px;
}

.bento-stats .stats-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bento-stats .stats-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.bento-stats .stats-content {
    display: flex;
    flex-direction: column;
}

.bento-stats .stats-number {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.bento-stats .stats-label {
    font-size: 15px;
    opacity: 0.9;
    font-weight: 500;
}

/* Quote Card - Spans 2 columns */
.bento-quote {
    grid-column: span 2;
    background: var(--gray-900);
    color: white;
}

.bento-quote .quote-content p {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 24px;
}

.bento-quote .quote-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bento-quote .quote-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-800);
}

.bento-quote .quote-info {
    display: flex;
    flex-direction: column;
}

.bento-quote .quote-name {
    font-size: 16px;
    font-weight: 700;
}

.bento-quote .quote-earn {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
}

/* CTA Card */
.bento-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-cta .cta-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-bottom: 8px;
}

.bento-cta h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

.bento-cta .cta-btn {
    display: inline-block;
    padding: 14px 28px;
    background: white;
    color: #764ba2;
    font-size: 15px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.bento-cta .cta-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, #fff 100%);
}

.testimonials-heading {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 24px;
    color: var(--black);
}

.testimonials-subheading {
    font-size: 18px;
    color: var(--gray-600);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
    line-height: 1.6;
}

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

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-image-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.4;
}

.testimonial-logo {
    position: absolute;
    top: 24px;
    right: 24px;
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.testimonial-logo-dark {
    filter: none;
}

.testimonial-logo-box {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #1a2744;
    border-radius: 8px;
    padding: 8px 12px;
}

.testimonial-logo-box .testimonial-logo {
    position: static;
    max-height: 24px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-socials {
    display: flex;
    gap: 12px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-button:hover {
    background: var(--gray-200);
    transform: scale(1.1);
}

.social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Testimonials Responsive */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }

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

    .testimonials-heading br {
        display: none;
    }

    /* Guideflow section mobile */
    .guideflow-section {
        padding: 60px 0;
    }

    .guideflow-section .testimonials-subheading {
        font-size: 16px;
        margin-bottom: 32px;
    }
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
    position: relative;
    padding: 240px 0;
    text-align: center;
    background: var(--gray-50);
}

.cta-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.5;
}

.orb-4 {
    width: 900px;
    height: 900px;
    background: linear-gradient(135deg, #FFE8E9 0%, #FFF0F1 100%);
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
}

.orb-5 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #FFF5F6 0%, #FFE8E9 100%);
    bottom: -300px;
    right: 10%;
}

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

.cta-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--black);
}

.cta-text {
    font-size: 26px;
    color: var(--gray-600);
    margin-bottom: 64px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    font-size: 16px;
    color: var(--gray-500);
    font-weight: 600;
}

/* ================================
   CREATOR BANNER
   ================================ */
.creator-banner {
    padding: 48px 0;
    background: var(--gray-100);
    text-align: center;
}

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

.creator-banner-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.creator-banner-text {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.5;
}

.creator-banner-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

.creator-banner-link:hover {
    opacity: 0.8;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    padding: 120px 0 48px;
    background: transparent;
    border-top: 1px solid var(--gray-200);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 120px;
    margin-bottom: 80px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--gray-500);
    font-size: 16px;
    font-weight: 500;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.footer-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    color: var(--gray-900);
    font-weight: 800;
}

.footer-col a {
    display: block;
    color: var(--gray-600);
    text-decoration: none;
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 48px;
    border-top: 1px solid var(--gray-200);
    font-size: 15px;
    color: var(--gray-500);
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 24px;
}

.footer-social a {
    color: var(--gray-500);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* ================================
   ADVERTISER SECTION
   ================================ */
.advertiser-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.advertiser-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(254, 56, 66, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.advertiser-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.advertiser-text {
    flex: 1;
    max-width: 600px;
}

.advertiser-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(254, 56, 66, 0.15);
    color: var(--primary);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(254, 56, 66, 0.3);
}

.advertiser-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.1;
}

.advertiser-desc {
    font-size: 18px;
    color: var(--gray-400);
    line-height: 1.6;
    margin: 0;
}

.btn-advertiser {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--white);
    color: var(--gray-900);
    font-size: 16px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-advertiser:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(254, 56, 66, 0.3);
}

.btn-advertiser svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-advertiser:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .advertiser-section {
        padding: 60px 0;
    }

    .advertiser-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .advertiser-text {
        max-width: 100%;
    }

    .advertiser-desc {
        font-size: 16px;
    }

    .btn-advertiser {
        padding: 16px 32px;
        font-size: 15px;
    }
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1200px) {
    .container,
    .container-wide {
        padding: 0 40px;
    }

    .bottom-stats {
        gap: 32px;
        padding: 16px 32px;
    }

    .bottom-stats-value {
        font-size: 20px;
    }

    .morph-shape.phone-shape {
        width: 300px;
        height: 600px;
    }

    .campaign-item {
        padding: 8px;
        gap: 10px;
    }

    .campaign-image {
        width: 46px;
        height: 46px;
    }

    .campaign-name {
        font-size: 13px;
    }

    .campaign-play {
        width: 36px;
        height: 36px;
    }

    .campaign-play svg {
        width: 14px;
        height: 14px;
    }

    .feature-large {
        grid-template-columns: 1fr;
        padding: 80px 60px;
    }

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

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

    /* Masonry Grid Tablet */
    .masonry-grid {
        columns: 2;
    }
}

@media (max-width: 768px) {
    .container,
    .container-wide {
        padding: 0 16px;
    }

    .nav {
        top: 12px;
        left: 0;
        right: 0;
        transform: none;
        padding: 0 16px;
        width: 100%;
    }

    .nav-container {
        padding: 10px 16px;
        width: 100%;
    }

    .nav-top-row {
        justify-content: space-between;
        width: 100%;
    }

    .nav-logo {
        padding: 4px 8px;
    }

    .logo-mark {
        height: 36px;
        width: auto;
    }

    /* Hide the desktop nav-menu on mobile */
    .nav-menu {
        display: none;
    }

    /* Show hamburger */
    .nav-hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        position: relative;
    }

    .hamburger-line {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--gray-900);
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* Animated X when open */
    .nav-hamburger.is-open .hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.is-open .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.is-open .hamburger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Expanding mobile menu — grid row animation (no layout thrash) */
    .nav-mobile-menu {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-mobile-menu.is-open {
        grid-template-rows: 1fr;
    }

    .nav-mobile-menu-inner {
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 0 4px;
    }

    .nav-mobile-menu.is-open .nav-mobile-menu-inner {
        padding: 12px 4px 4px;
    }

    .mobile-nav-link {
        color: var(--gray-900);
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        padding: 12px 14px;
        border-radius: 12px;
        transition: background 0.15s ease;
    }

    .mobile-nav-link:active {
        background: rgba(0, 0, 0, 0.05);
    }

    .mobile-nav-cta {
        display: block;
        margin-top: 8px;
        padding: 12px 24px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: var(--white);
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        text-align: center;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(254, 56, 66, 0.3);
    }

    .hero-scroll-morph {
        min-height: 300vh;
    }

    .morph-shape.phone-shape {
        width: 260px;
        height: 520px;
        border-radius: 40px;
    }

    .phone-content {
        padding: 40px 0 16px;
    }

    .app-header {
        padding: 12px 16px 16px;
    }

    .app-title {
        font-size: 18px;
    }

    .campaign-list {
        padding: 0 8px;
        gap: 2px;
    }

    .campaign-item {
        padding: 8px;
        gap: 8px;
    }

    .campaign-image {
        width: 42px;
        height: 42px;
        border-radius: 6px;
    }

    .platform-icon {
        width: 14px;
        height: 14px;
        font-size: 8px;
    }

    .campaign-price {
        font-size: 9px;
        padding: 2px 6px;
    }

    .campaign-name {
        font-size: 12px;
    }

    .campaign-artist {
        font-size: 10px;
    }

    .campaign-play {
        width: 32px;
        height: 32px;
    }

    .campaign-play svg {
        width: 12px;
        height: 12px;
    }

    .bottom-stats {
        gap: 24px;
        padding: 16px 24px;
    }

    .bottom-stats-value {
        font-size: 18px;
    }

    .bottom-stats-label {
        font-size: 9px;
    }


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

    .marquee-content span {
        font-size: 50px;
    }

    section {
        padding: 100px 0;
    }

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

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

    /* Masonry Grid Mobile */
    .masonry-grid {
        columns: 1;
        column-gap: 16px;
    }

    .creator-tall {
        height: 520px;
    }

    .creator-medium {
        height: 440px;
    }

    .creator-short {
        height: 380px;
    }

    .creator-name {
        font-size: 22px;
    }

    .creator-quote {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .creator-stats-row {
        gap: 6px;
        margin-bottom: 12px;
    }

    .creator-stat-pill {
        padding: 6px 10px;
        font-size: 12px;
    }

    .creator-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .bento-creator .creator-socials {
        flex-wrap: wrap;
    }

    .creator-learn-more {
        width: 100%;
        justify-content: center;
    }

    .section-subtitle {
        font-size: 16px;
    }

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

    .store-badge {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .store-title {
        font-size: 16px;
    }

    .store-icon {
        width: 24px;
        height: 24px;
    }

    /* Hero Visual Mobile */
    .hero-visual-3d {
        height: 450px;
        margin-top: 40px;
    }

    .targeting-header {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .targeting-map {
        height: 70px;
        margin-bottom: 8px;
    }

    .targeting-tag {
        font-size: 9px;
        padding: 3px 8px;
    }

    .engagement-title {
        font-size: 13px;
    }

    .engagement-percent {
        font-size: 14px;
    }

    .engagement-bars {
        height: 60px;
        gap: 6px;
        margin-bottom: 12px;
    }

    .engagement-bar {
        border-radius: 4px;
    }

    .metric {
        padding: 4px 8px;
        gap: 4px;
    }

    .metric-icon {
        font-size: 12px;
    }

    .metric-value {
        font-size: 11px;
    }
}

/* ================================
   ADVERTISER PAGE STYLES
   ================================ */

/* Hero Adjustments for Advertiser */
.advertiser-hero {
    padding-bottom: 80px;
}

.advertiser-hero .hero-content-wrapper {
    grid-template-columns: 1fr 1fr;
}

.gradient-text-static {
    background: linear-gradient(135deg, var(--primary) 0%, #FF6B6B 50%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s linear infinite;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #FF6B6B 100%) !important;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(254, 56, 66, 0.4);
}

/* Hero Image Grid */
.advertiser-visual {
    position: relative;
    height: auto;
    min-height: 500px;
}

/* ================================
   PINTEREST-STYLE VIDEO GRID
   ================================ */
.video-grid-container {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 24px;
}

.video-grid-fade {
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 10;
    pointer-events: none;
}

.video-grid-fade-top {
    top: 0;
    background: linear-gradient(to bottom, #faf9f8 0%, rgba(250, 249, 248, 0) 100%);
}

.video-grid-fade-bottom {
    bottom: 0;
    background: linear-gradient(to top, #faf9f8 0%, rgba(250, 249, 248, 0) 100%);
}

.video-grid {
    display: flex;
    gap: 12px;
    height: 100%;
    padding: 0 10px;
}

.video-grid-column {
    flex: 1;
    overflow: hidden;
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.video-grid-track {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: scrollVideoGrid 30s linear infinite;
    animation-direction: normal;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Reverse scroll for middle column — use a separate forward keyframe
   instead of animation-direction: reverse, which iOS composites poorly */
.video-grid-column[style*="--scroll-direction: -1"] .video-grid-track {
    animation-name: scrollVideoGridDown;
}

@keyframes scrollVideoGrid {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollVideoGridDown {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

.grid-video-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.grid-video-card video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.grid-video-stats {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    /* Force GPU compositing layer so iOS doesn't render video on top */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 2;
}

.grid-video-stats::before {
    content: "▶";
    font-size: 10px;
    margin-right: 2px;
}

/* Floating Cards over Video Grid */
.advertiser-visual .card-targeting {
    position: absolute;
    top: -8%;
    right: -100px;
    width: 220px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 20;
    opacity: 0;
    animation: floatCardIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards,
               floatCardHover 6s ease-in-out 0.9s infinite;
}

.advertiser-visual .card-engagement {
    position: absolute;
    bottom: -8%;
    left: -100px;
    width: 220px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 20;
    opacity: 0;
    animation: floatCardIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards,
               floatCardHover2 7s ease-in-out 1.8s infinite;
}

@keyframes floatCardIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes floatCardHover {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes floatCardHover2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Targeting Card Styles */
.advertiser-visual .targeting-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.advertiser-visual .targeting-icon {
    font-size: 14px;
}

.advertiser-visual .targeting-map {
    position: relative;
    height: 70px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.advertiser-visual .world-map-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.5;
}

.advertiser-visual .location-pin {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(254, 56, 66, 0.4);
    opacity: 0;
    transform: scale(0) translateY(-10px);
    animation: pinDropIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Staggered pin drop-in delays (after card appears at 0.3s) */
.advertiser-visual .location-pin:nth-child(2) { animation-delay: 0.6s; }
.advertiser-visual .location-pin:nth-child(3) { animation-delay: 0.72s; }
.advertiser-visual .location-pin:nth-child(4) { animation-delay: 0.84s; }
.advertiser-visual .location-pin:nth-child(5) { animation-delay: 0.96s; }
.advertiser-visual .location-pin:nth-child(6) { animation-delay: 1.08s; }

@keyframes pinDropIn {
    0% {
        opacity: 0;
        transform: scale(0) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.advertiser-visual .location-pin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pinPulseRing 2s ease-out infinite;
    animation-delay: 2.5s;
}

.advertiser-visual .location-pin:nth-child(2)::before { animation-delay: 1.2s; }
.advertiser-visual .location-pin:nth-child(3)::before { animation-delay: 1.3s; }
.advertiser-visual .location-pin:nth-child(4)::before { animation-delay: 1.4s; }
.advertiser-visual .location-pin:nth-child(5)::before { animation-delay: 1.5s; }
.advertiser-visual .location-pin:nth-child(6)::before { animation-delay: 1.6s; }

@keyframes pinPulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.advertiser-visual .targeting-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
}

.advertiser-visual .targeting-tag {
    padding: 4px 10px;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 11px;
    font-weight: 500;
    border-radius: 20px;
}

/* Engagement Card Styles */
.advertiser-visual .engagement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.advertiser-visual .engagement-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-900);
}

.advertiser-visual .engagement-percent {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.advertiser-visual .engagement-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    margin-bottom: 12px;
}

.advertiser-visual .engagement-bar {
    flex: 1;
    background: #e5e7eb;
    border-radius: 4px;
    height: 0;
    animation: barGrowUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(1.4s + var(--i) * 0.05s);
}

.advertiser-visual .engagement-bar:last-child {
    background: var(--primary);
}

.advertiser-visual .engagement-metrics {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--gray-100);
}

.advertiser-visual .metric {
    display: flex;
    align-items: center;
    gap: 4px;
}

.advertiser-visual .metric-icon {
    width: 14px;
    height: 14px;
    color: var(--gray-400);
}

.advertiser-visual .metric-icon svg {
    width: 100%;
    height: 100%;
}

.advertiser-visual .metric-value {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-900);
}

/* AI Quality Card */
.advertiser-visual .card-ai-quality {
    position: absolute;
    bottom: -5%;
    right: -5%;
    left: auto !important;
    width: 160px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 20;
    opacity: 0;
    animation: floatCardIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 2.0s forwards,
               floatCardHover 6s ease-in-out 2.6s infinite;
}

.advertiser-visual .ai-quality-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.advertiser-visual .ai-quality-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.advertiser-visual .ai-quality-icon {
    width: 32px;
    height: 32px;
}

.advertiser-visual .ai-quality-icon svg {
    width: 100%;
    height: 100%;
}

.advertiser-visual .ai-quality-score {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dcfce7;
    padding: 6px 12px;
    border-radius: 20px;
}

.advertiser-visual .score-arrow {
    width: 16px;
    height: 16px;
    color: #16a34a;
}

.advertiser-visual .score-arrow svg {
    width: 100%;
    height: 100%;
}

.advertiser-visual .score-value {
    font-size: 16px;
    font-weight: 700;
    color: #16a34a;
}

/* ================================
   HERO LOADING STATE
   ================================ */
.hero-loading-skeleton {
    position: absolute;
    inset: 0;
    z-index: 25;
    display: flex;
    gap: 12px;
    padding: 0 10px;
    border-radius: 24px;
    overflow: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero-loading-skeleton .skeleton-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-loading-skeleton .skeleton-card {
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    background: linear-gradient(110deg, #e8e8e8 8%, #f5f5f5 18%, #e8e8e8 33%);
    background-size: 200% 100%;
    animation: heroShimmer 1.5s linear infinite;
    flex-shrink: 0;
}

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

/* Hide skeleton when loaded */
.advertiser-visual.hero-loaded .hero-loading-skeleton {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Hide video grid until loaded */
.advertiser-visual:not(.hero-loaded) .video-grid-container {
    opacity: 0;
}

.advertiser-visual .video-grid-container {
    transition: opacity 0.6s ease;
}

/* Pause grid scroll until loaded */
.advertiser-visual:not(.hero-loaded) .video-grid-track {
    animation-play-state: paused;
}

/* Suppress floating card animations until loaded */
.advertiser-visual:not(.hero-loaded) .card-targeting,
.advertiser-visual:not(.hero-loaded) .card-engagement,
.advertiser-visual:not(.hero-loaded) .card-ai-quality {
    animation: none;
    opacity: 0;
}

/* Suppress engagement bar animations until loaded */
.advertiser-visual:not(.hero-loaded) .engagement-bar {
    animation: none;
    height: 0;
}

/* Suppress location pin animations until loaded */
.advertiser-visual:not(.hero-loaded) .location-pin {
    animation: none;
    opacity: 0;
    transform: scale(0) translateY(-10px);
}

.advertiser-visual:not(.hero-loaded) .location-pin::before {
    animation: none;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    padding: 20px;
}

.hero-grid-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-grid-main {
    grid-column: 1 / -1;
    animation-delay: 0.2s;
}

.hero-grid-top {
    animation-delay: 0.4s;
}

.hero-grid-bottom {
    animation-delay: 0.6s;
}

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

.hero-showcase-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Brands Carousel */
.brands-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.brands-carousel::before,
.brands-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.brands-carousel::before {
    left: 0;
    background: linear-gradient(to right, #fafaf9 0%, transparent 100%);
}

.brands-carousel::after {
    right: 0;
    background: linear-gradient(to left, #fafaf9 0%, transparent 100%);
}

.brands-carousel-track {
    display: flex;
    align-items: center;
    gap: 45px;
    animation: scroll-brands 80s linear infinite;
    width: max-content;
}

.brands-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.brand-item .brand-logo-img {
    height: 55px;
    max-width: 130px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.brand-item:hover .brand-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-item .brand-logo-compact {
    margin-left: -25px;
    margin-right: -25px;
}

.brand-case-study {
    position: absolute;
    bottom: -14px;
    text-decoration: none;
    z-index: 3;
}

.case-study-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: white;
    color: var(--black);
    font-size: 10px;
    font-weight: 600;
    border-radius: 100px;
    white-space: nowrap;
    border: 1px solid var(--black);
    transition: all 0.3s ease;
}

.case-study-badge svg {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.brand-case-study:hover .case-study-badge {
    background: var(--black);
    color: white;
}

/* Section Titles */
.section-title-center {
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle-center {
    text-align: center;
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 40px;
}

/* Case Studies Section */
.case-studies-section {
    padding: 100px 0;
    background: transparent;
    content-visibility: auto;
    contain-intrinsic-size: auto 1200px;
}

/* Hidden by default until animated */
.case-studies-section:not(.animate-in) .section-title-center,
.case-studies-section:not(.animate-in) .industry-sidebar,
.case-studies-section:not(.animate-in) .tab-content,
.case-studies-section:not(.animate-in) .case-study-card,
.case-studies-section:not(.animate-in) .floating-video-card {
    opacity: 0;
}

/* Animate in state */
.case-studies-section.animate-in .section-title-center {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.case-studies-section.animate-in .industry-sidebar {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.case-studies-section.animate-in .tab-content {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

/* Case Studies Layout - Sidebar + Content */
.case-studies-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: stretch;
    margin-top: 48px;
}

.industry-sidebar {
    position: sticky;
    top: 120px;
}

.industry-sidebar-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    padding-left: 16px;
}

/* Industry Tabs */
.industry-tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tab-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    overflow: hidden;
}

.tab-btn .tab-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-600);
    transition: color 0.3s ease;
}

.tab-btn .tab-subtitle {
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 2px;
    transition: color 0.3s ease;
}

.tab-btn:hover {
    background: var(--gray-50);
}

.tab-btn:hover .tab-title {
    color: var(--black);
}

.tab-btn.active {
    background: var(--black);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tab-btn.active .tab-title {
    color: white;
}

.tab-btn.active .tab-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Tab Progress Bar */
.tab-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0 0 12px 12px;
    opacity: 0;
}

.tab-btn.active .tab-progress {
    opacity: 1;
}

@keyframes tabProgress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* Tab Content */
.tab-content {
    position: relative;
    height: 100%;
}

.tab-pane {
    display: none;
    height: 100%;
}

.tab-pane.active {
    display: block;
    height: 100%;
}

/* Card animation - only after section has animated in */
.case-studies-section.animate-in .tab-pane.active .case-study-card {
    animation: cardFadeIn 0.4s ease forwards;
}

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

/* Staggered animations for case study elements - only after section animates */
.case-studies-section.animate-in .tab-pane.active .case-study-logo {
    animation: fadeInUp 0.4s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.case-studies-section.animate-in .tab-pane.active .case-study-desc {
    animation: fadeInUp 0.4s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.case-studies-section.animate-in .tab-pane.active .case-study-metrics .metric:nth-child(1) {
    animation: fadeInUp 0.4s ease forwards;
    animation-delay: 0.25s;
    opacity: 0;
}

.case-studies-section.animate-in .tab-pane.active .case-study-metrics .metric:nth-child(2) {
    animation: fadeInUp 0.4s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.case-studies-section.animate-in .tab-pane.active .case-study-metrics .metric:nth-child(3) {
    animation: fadeInUp 0.4s ease forwards;
    animation-delay: 0.35s;
    opacity: 0;
}

.case-studies-section.animate-in .tab-pane.active .case-study-metrics .metric:nth-child(4) {
    animation: fadeInUp 0.4s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.case-studies-section.animate-in .tab-pane.active .case-study-info .btn-primary {
    animation: fadeInUp 0.4s ease forwards;
    animation-delay: 0.45s;
    opacity: 0;
}

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

/* Case Study Card */
.case-study-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--gray-200);
    min-height: 420px;
    height: 100%;
    overflow: visible;
}

.case-study-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    justify-content: flex-start;
    border-radius: 18px 0 0 18px;
    background: white;
}

.case-study-logo {
    height: 72px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    align-self: flex-start;
}

.case-study-logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    align-self: flex-start;
}

.case-study-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-600);
}

.case-study-metrics {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
}

.case-study-metrics .metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    background: transparent;
    border-radius: 0;
}

.case-study-metrics .metric:last-child {
    border-bottom: none;
}

.metric-label {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

.metric-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.case-study-info .btn-primary {
    margin-top: 8px;
    align-self: flex-start;
}

.case-study-visual {
    position: relative;
    overflow: visible;
    border-radius: 0 18px 18px 0;
}

.case-study-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 18px 18px 0;
}

/* Floating Videos */
.floating-videos {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
}

.floating-video-card {
    position: absolute;
    width: 140px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid white;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 255, 255, 0.5);
    pointer-events: auto;
    isolation: isolate;
    background: #1a1a1a;
}

.floating-video-card:nth-child(1) {
    top: -20px;
    right: -20px;
    transform: rotate(3deg);
}

.floating-video-card:nth-child(2) {
    bottom: -20px;
    left: -20px;
    transform: rotate(-3deg);
}

.floating-video-card video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 13px;
}

.floating-video-card .video-stats {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-video-card .video-stats > * {
    pointer-events: auto;
}

.floating-video-card .video-views {
    position: absolute;
    top: 8px;
    right: 8px;
    bottom: auto;
    left: auto;
    transform: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding: 4px 8px;
    border-radius: 20px;
}

.floating-video-card .video-views svg {
    color: white;
}

.floating-video-card .video-tiktok-link {
    position: absolute;
    bottom: 8px;
    left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    color: white;
    transition: transform 0.2s ease, background 0.2s ease;
}

.video-tiktok-link:hover {
    background: rgba(0, 0, 0, 0.8);
}

.video-tiktok-link:hover {
    transform: scale(1.1);
}

/* Floating video animations - only after section animates */
.case-studies-section.animate-in .tab-pane.active .floating-video-card:nth-child(1) {
    animation: floatInTopRight 0.5s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.case-studies-section.animate-in .tab-pane.active .floating-video-card:nth-child(2) {
    animation: floatInBottomLeft 0.5s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

@keyframes floatInTopRight {
    from {
        opacity: 0;
        transform: translate(20px, -20px) rotate(6deg);
    }
    to {
        opacity: 1;
        transform: translate(0, 0) rotate(3deg);
    }
}

@keyframes floatInBottomLeft {
    from {
        opacity: 0;
        transform: translate(-20px, 20px) rotate(-6deg);
    }
    to {
        opacity: 1;
        transform: translate(0, 0) rotate(-3deg);
    }
}

/* Creativity Section */
.creativity-section {
    padding: 80px 0 0;
    background: var(--gray-50);
}

/* Creator CTA Section */
.creator-cta-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
}

.creator-cta-section .advertiser-badge {
    background: rgba(254, 56, 66, 0.15);
    color: var(--primary);
}

/* Record Label CTA Section */
.record-label-cta-section {
    background: var(--gray-100);
    padding: 48px 0;
    border-top: 1px solid var(--gray-200);
}

.record-label-cta-section::before {
    display: none;
}

.record-label-cta-section .advertiser-title {
    font-size: clamp(24px, 4vw, 32px);
    color: var(--gray-900);
}

.record-label-cta-section .advertiser-desc {
    color: var(--gray-600);
}

.record-label-cta-section .btn-advertiser {
    background: transparent;
    border: 2px solid var(--gray-900);
    color: var(--gray-900);
}

.record-label-cta-section .btn-advertiser:hover {
    background: var(--gray-900);
    color: white;
}

@media (max-width: 768px) {
    .record-label-cta-section .advertiser-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Advertiser Page Responsive Styles */
@media (max-width: 1200px) {
    .brands-carousel::before,
    .brands-carousel::after {
        width: 100px;
    }
}

@media (max-width: 991px) {
    .advertiser-hero .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advertiser-visual {
        min-height: auto;
    }

    .hero-image-grid {
        padding: 0;
    }

    .video-grid-container {
        height: 450px;
    }

    .video-grid {
        gap: 10px;
    }

    .grid-video-card {
        border-radius: 12px;
    }

    .hero-loading-skeleton {
        gap: 10px;
    }

    .hero-loading-skeleton .skeleton-card {
        border-radius: 12px;
    }

    .grid-video-stats {
        font-size: 11px;
        padding: 4px 8px;
    }

    .advertiser-visual .card-targeting {
        right: -10px;
        padding: 14px;
    }

    .advertiser-visual .card-engagement {
        left: -10px;
        width: 220px;
        padding: 14px;
    }

    .advertiser-visual .targeting-map {
        height: 70px;
    }

    .advertiser-visual .engagement-bars {
        height: 50px;
    }

    .case-studies-layout {
        grid-template-columns: 240px 1fr;
        gap: 32px;
    }

    .case-studies-layout > * {
        min-width: 0;
    }

    .case-study-card {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        overflow: hidden;
    }

    .case-study-card > * {
        min-width: 0;
    }

    .case-study-visual {
        order: -1;
        height: 300px;
        border-radius: 18px 18px 0 0;
    }

    .case-study-image {
        border-radius: 18px 18px 0 0;
    }

    .case-study-info {
        border-radius: 0 0 18px 18px;
    }

    .brands-carousel-track {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    /* === Case Studies Section === */
    .case-studies-section {
        padding: 60px 0;
        overflow-x: hidden;
    }

    .case-studies-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }

    .case-studies-layout > * {
        min-width: 0;
    }

    .industry-sidebar {
        position: static;
    }

    .industry-sidebar-title {
        text-align: center;
        padding-left: 0;
        font-size: 12px;
        margin-bottom: 12px;
    }

    .industry-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding-bottom: 4px;
    }

    .tab-btn {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        border: 1px solid var(--gray-200);
        border-radius: 100px;
        flex-shrink: 0;
        min-width: fit-content;
    }

    .tab-btn .tab-subtitle {
        display: none;
    }

    .tab-btn .tab-title {
        font-size: 14px;
    }

    .tab-btn.active {
        border-color: var(--black);
    }

    .case-study-card {
        grid-template-columns: 1fr;
        min-height: auto;
        overflow: hidden;
        padding: 0;
        border-radius: 16px;
        max-width: 100%;
    }

    .case-study-card > * {
        min-width: 0;
    }

    .tab-content {
        height: auto;
        min-width: 0;
    }

    .tab-pane {
        height: auto;
    }

    .tab-pane.active {
        height: auto;
    }

    .case-study-visual {
        order: -1;
        position: relative;
        height: 220px;
        border-radius: 14px 14px 0 0;
    }

    .case-study-image {
        border-radius: 14px 14px 0 0;
    }

    .case-study-info {
        padding: 20px;
        gap: 12px;
        border-radius: 0 0 14px 14px;
        overflow: hidden;
    }

    .case-study-logo {
        height: 40px;
        margin-left: 0 !important;
        max-width: 160px;
    }

    .case-study-desc {
        font-size: 13px;
        line-height: 1.5;
    }

    .case-study-metrics .metric {
        padding: 10px 0;
    }

    .metric-label {
        font-size: 13px;
    }

    .metric-value {
        font-size: 14px;
    }

    .case-study-info .btn-primary {
        width: 100%;
        justify-content: center;
    }

    /* Hide floating videos on mobile */
    .floating-videos {
        display: none;
    }

    .brands-carousel::before,
    .brands-carousel::after {
        width: 60px;
    }

    .brands-carousel-track {
        gap: 40px;
    }

    .brand-item .brand-logo-img {
        height: 45px !important;
        max-width: 120px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .section-title-center {
        font-size: 28px;
    }

    .hero-badge {
        display: none;
    }

    .hero-headline {
        font-size: clamp(36px, 9vw, 48px);
        margin-top: 40px;
    }

    /* iOS performance: remove expensive effects on mobile */
    .grid-video-stats {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(0, 0, 0, 0.85);
    }

    /* Remove backdrop-filter from floating cards on mobile */
    .card-targeting,
    .card-engagement,
    .card-ai-quality {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    /* Simplify body gradient animation on mobile */
    body {
        animation: none;
        background: #faf9f8;
    }

    /* Reduce box-shadow complexity on animated elements */
    .nav-container-inner {
        backdrop-filter: blur(20px) saturate(150%);
        -webkit-backdrop-filter: blur(20px) saturate(150%);
    }

    /* Hero floating cards -- scale down, keep animations */
    .advertiser-visual .card-targeting {
        scale: 0.85;
        transform-origin: top right;
        right: -10px;
    }

    .advertiser-visual .card-engagement {
        scale: 0.75;
        transform-origin: bottom left;
        left: -10px;
    }

    .advertiser-visual .card-ai-quality {
        scale: 0.75;
        transform-origin: bottom right;
    }

    /* Reduce mesh orb blur and disable animation on mobile for performance */
    .mesh-orb {
        filter: blur(40px);
        animation: none;
    }

    /* Reduce gradient orb blur on mobile */
    .gradient-orb {
        filter: blur(60px);
        animation: none;
    }

    /* Reduce video grid gap and slow animation on mobile for performance */
    .video-grid-track {
        gap: 8px;
        animation-duration: 45s;
    }

    .grid-video-card video {
        will-change: auto;
    }
}

@media (max-width: 480px) {
    .brands-carousel::before,
    .brands-carousel::after {
        width: 40px;
    }

    .brands-carousel-track {
        gap: 30px;
    }

    .brand-item .brand-logo-img {
        height: 36px !important;
        max-width: 100px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .hero-image-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid-main {
        grid-column: 1;
    }

    .tab-btn {
        padding: 8px 14px;
    }

    .tab-btn .tab-title {
        font-size: 13px;
    }

    .video-grid-container {
        height: 380px;
    }

    .video-grid {
        gap: 8px;
    }

    .grid-video-card {
        border-radius: 10px;
    }

    .grid-video-stats {
        bottom: 6px;
        left: 6px;
        font-size: 10px;
        padding: 3px 6px;
    }

    .video-grid-fade {
        height: 60px;
    }

    /* Hero floating cards -- scale smaller on small phones */
    .advertiser-visual .card-targeting {
        scale: 0.6;
    }

    .advertiser-visual .card-engagement {
        scale: 0.6;
    }

    .advertiser-visual .card-ai-quality {
        scale: 0.6;
    }

    .case-study-visual {
        height: 180px;
    }

    .case-study-info {
        padding: 16px;
        gap: 10px;
    }

    .case-study-desc {
        font-size: 12px;
    }

    .case-study-logo {
        height: 32px;
        max-width: 120px;
    }

    .metric-label {
        font-size: 12px;
    }

    .metric-value {
        font-size: 13px;
    }
}

/* ================================
   NO HASSLE SECTION
   ================================ */
.no-hassle-section {
    padding: 120px 0;
    background: var(--gray-50);
    text-align: center;
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

.no-hassle-headlines {
    margin-bottom: 80px;
}

.no-hassle-headline {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--black);
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.no-hassle-headline:nth-child(2) {
    transition-delay: 0.15s;
}

.no-hassle-headline:nth-child(3) {
    transition-delay: 0.3s;
}

.no-hassle-section.in-view .no-hassle-headline {
    opacity: 1;
    transform: translateY(0);
}

/* Highlight Cards */
.highlight-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.highlight-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    border: 2px solid #f0f0f0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.highlight-card:nth-child(1) { transition-delay: 0.1s; }
.highlight-card:nth-child(2) { transition-delay: 0.2s; }
.highlight-card:nth-child(3) { transition-delay: 0.3s; }

.no-hassle-section.in-view .highlight-card {
    opacity: 1;
    transform: translateY(0);
}

.highlight-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.highlight-card:hover .highlight-glow {
    opacity: 1;
}

.highlight-card:hover .highlight-icon-wrap {
    background: var(--primary);
}

.highlight-card:hover .highlight-icon-wrap svg {
    color: #fff;
}

/* Glow effect */
.highlight-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 107, 91, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Icon */
.highlight-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: #fff5f4;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.highlight-icon-wrap svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    transition: color 0.3s ease;
}

/* Content */
.highlight-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.highlight-desc {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
    .highlight-cards {
        grid-template-columns: 1fr;
        max-width: 360px;
        gap: 16px;
    }

    .highlight-card {
        padding: 28px 24px;
    }

    .highlight-icon-wrap {
        width: 56px;
        height: 56px;
    }

    .highlight-title {
        font-size: 22px;
    }
}

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

.no-hassle-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.no-hassle-value {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.no-hassle-value .accent {
    color: var(--primary);
}

.no-hassle-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-600);
    line-height: 1.5;
    max-width: 280px;
}

.no-hassle-cta {
    margin-top: 40px;
}

.btn-rounded {
    border-radius: 100px;
    padding: 18px 48px;
}

/* Responsive */
@media (max-width: 900px) {
    .no-hassle-stats {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .no-hassle-section {
        padding: 80px 0;
    }

    .no-hassle-headlines {
        margin-bottom: 60px;
    }
}

@media (max-width: 600px) {
    .no-hassle-headline {
        font-size: 32px;
    }

    .no-hassle-value {
        font-size: 36px;
    }
}

/* ================================
   HOW IT WORKS - SCROLL ANIMATION SECTION
   ================================ */
.how-it-works-scroll {
    position: relative;
    background: transparent;
    overflow-x: clip;
    overflow-y: visible;
}

.how-it-works-scroll .hero-background-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.scroll-container {
    height: 1200vh; /* 12x viewport height for more scroll room */
    position: relative;
}

.scroll-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    overflow: hidden;
}

/* Phase Indicator Dots */
.phase-indicator {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 100;
}

.phase-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.phase-dot.active {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(254, 56, 66, 0.4);
}

.phase-dot::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: border-color 0.3s ease;
}

.phase-dot.active::before {
    border-color: rgba(254, 56, 66, 0.3);
}

/* Section Title */
.scroll-section-title {
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 100;
}

/* Phase Labels */
.phase-label {
    position: absolute;
    top: 195px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.phase-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: 0;
    line-height: 1.2;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-align: center;
}

.phase-text .accent {
    color: inherit;
}

.phase-text .step-number {
    color: var(--gray-500);
    margin-right: 6px;
    font-weight: 500;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    display: inline;
}

.phase-text.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Animation Stage */
.animation-stage {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Base Tile Styles */
.tile {
    position: absolute;
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.08),
        0 1px 2px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

.tile-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tile.visible .tile-header {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.tile-content {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tile.visible .tile-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.tile-icon {
    font-size: 20px;
}

.tile-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
}

/* Briefing Tile */
.tile-briefing {
    width: 300px;
    left: 50%;
    top: 50%;
    transform: translate(-120%, -50%) scale(0.8);
}

.tile-briefing.visible {
    opacity: 1;
    transform: translate(-120%, -50%) scale(1);
}

.briefing-text {
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tile-briefing.visible .briefing-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

.briefing-instruction {
    font-size: 11px;
    color: var(--gray-900);
    line-height: 1.4;
    margin-bottom: 8px;
}

.briefing-list {
    font-size: 11px;
    color: var(--gray-900);
    margin: 0;
    padding-left: 14px;
    line-height: 1.5;
}

.briefing-list li {
    margin-bottom: 2px;
}

.briefing-videos {
    display: flex;
    gap: 8px;
}

.briefing-video {
    position: relative;
    flex: 0 0 auto;
    width: 85px;
    aspect-ratio: 9/13;
    border-radius: 6px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tile-briefing.visible .briefing-video {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.tile-briefing.visible .briefing-video:nth-child(1) {
    transition-delay: 0.35s;
}

.tile-briefing.visible .briefing-video:nth-child(2) {
    transition-delay: 0.45s;
}

.briefing-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-label {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 9px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
}

/* Product Tile */
.tile-product {
    width: 320px;
    left: 50%;
    top: 50%;
    transform: translate(50%, -50%) scale(0.8);
}

.tile-product.visible {
    opacity: 1;
    transform: translate(50%, -50%) scale(1);
}

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

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-item:nth-child(1) { transition-delay: 0.15s; }
.product-item:nth-child(2) { transition-delay: 0.25s; }
.product-item:nth-child(3) { transition-delay: 0.35s; }

.tile-product.visible .product-item {
    opacity: 1;
    transform: translateY(0);
}

.product-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-item:hover .product-image {
    transform: scale(1.05);
}

.product-name {
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
    line-height: 1.2;
}

/* Targeting Tile */
.tile-targeting {
    width: 400px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 0%) scale(0.8);
    z-index: 15;
}

.tile-targeting.visible {
    opacity: 1;
    transform: translate(-50%, 0%) scale(1);
}

.targeting-filters {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-group:nth-child(1) { transition-delay: 0.2s; }
.filter-group:nth-child(2) { transition-delay: 0.3s; }
.filter-group:nth-child(3) { transition-delay: 0.4s; }
.filter-group:nth-child(4) { transition-delay: 0.5s; }

.tile-targeting.visible .filter-group {
    opacity: 1;
    transform: translateY(0);
}

.filter-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.filter-tag {
    padding: 6px 12px;
    background: var(--gray-100);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.filter-tag.active {
    background: var(--primary);
    color: white;
}

.filter-range {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: var(--gray-500);
}

.range-bar {
    flex: 1;
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
}

.range-fill {
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 3px;
}

/* Campaign Tile */
.tile-campaign {
    width: 420px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -35%) scale(0);
    z-index: 20;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border: 2px solid var(--primary);
}

.tile-campaign.visible {
    opacity: 1;
    animation: campaignPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes campaignPop {
    0% {
        transform: translate(-50%, -35%) scale(0);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -35%) scale(1.15);
        opacity: 1;
    }
    70% {
        transform: translate(-50%, -35%) scale(0.95);
    }
    100% {
        transform: translate(-50%, -35%) scale(1);
    }
}

.campaign-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(254, 56, 66, 0.15) 0%, transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.tile-campaign.visible .campaign-glow {
    opacity: 1;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Burst lines - Twitter-like spike effect at corners */
.burst-lines {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 30;
}

/* Position at corners, slightly outside */
.burst-top-right {
    top: -10px;
    right: -10px;
}

.burst-bottom-left {
    bottom: 5px;
    left: 5px;
}

.burst-bottom-left .burst-line {
    transform-origin: center top;
}

.burst-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 24px;
    background: var(--primary);
    border-radius: 3px;
    opacity: 0;
    transform-origin: center bottom;
}

/* Top-right spike - lines fan outward: up, diagonal, right */
.burst-top-right .burst-line:nth-child(1) { transform: rotate(0deg) translateY(-100%); --delay: 0s; }
.burst-top-right .burst-line:nth-child(2) { transform: rotate(45deg) translateY(-100%); --delay: 0.04s; }
.burst-top-right .burst-line:nth-child(3) { transform: rotate(90deg) translateY(-100%); --delay: 0.02s; }

/* Bottom-left spike - lines fan outward: down, diagonal, left */
.burst-bottom-left .burst-line:nth-child(1) { transform: rotate(0deg) translateY(100%); --delay: 0.03s; }
.burst-bottom-left .burst-line:nth-child(2) { transform: rotate(45deg) translateY(100%); --delay: 0s; }
.burst-bottom-left .burst-line:nth-child(3) { transform: rotate(90deg) translateY(100%); --delay: 0.05s; }

/* Animate burst lines when tile is visible */
.tile-campaign.visible .burst-line {
    animation: spikeOut 0.8s ease-out forwards;
    animation-delay: var(--delay);
}

@keyframes spikeOut {
    0% {
        opacity: 0;
        height: 0;
    }
    15% {
        opacity: 1;
        height: 28px;
    }
    50% {
        opacity: 1;
        height: 24px;
    }
    100% {
        opacity: 0;
        height: 18px;
    }
}

/* Campaign tile content layout */
.tile-campaign .tile-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.campaign-products {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

.campaign-product-img {
    position: absolute;
    width: 55px;
    height: 75px;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.campaign-product-img:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 1;
    transform: rotate(-8deg) scale(0.8);
    transition-delay: 0.15s;
}

.campaign-product-img:nth-child(2) {
    top: 5px;
    left: 18px;
    z-index: 2;
    transform: rotate(0deg) scale(0.8);
    transition-delay: 0.25s;
}

.campaign-product-img:nth-child(3) {
    top: 0;
    left: 36px;
    z-index: 3;
    transform: rotate(8deg) scale(0.8);
    transition-delay: 0.35s;
}

.tile-campaign.visible .campaign-product-img:nth-child(1) {
    opacity: 1;
    transform: rotate(-8deg) scale(1);
}

.tile-campaign.visible .campaign-product-img:nth-child(2) {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.tile-campaign.visible .campaign-product-img:nth-child(3) {
    opacity: 1;
    transform: rotate(8deg) scale(1);
}

.campaign-details {
    flex: 1;
}

.campaign-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.tile-campaign.visible .campaign-status {
    opacity: 1;
    transform: translateY(0);
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: statusPulse 1.5s ease-in-out infinite;
}

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

.campaign-status span {
    font-size: 13px;
    font-weight: 600;
    color: #22c55e;
}

.tile-campaign .campaign-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tile-campaign .campaign-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

.tile-campaign.visible .campaign-name {
    opacity: 1;
    transform: translateY(0);
}

.tile-campaign .campaign-creators {
    font-size: 13px;
    color: var(--gray-500);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.45s;
}

.tile-campaign.visible .campaign-creators {
    opacity: 1;
    transform: translateY(0);
}

/* Merging Animation States */
.tile-briefing.merging,
.tile-product.merging,
.tile-targeting.merging {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
}

/* Exploding Videos */
.exploding-videos {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-template-rows: repeat(2, auto);
    gap: 50px 12px;
    padding: 120px 20px 20px 20px;
    box-sizing: border-box;
    justify-content: center;
    align-content: center;
}

.exploding-video {
    width: 150px;
    aspect-ratio: 9 / 16;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 15;
}

.exploding-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exploding-video.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered animation delays for grid */
.exploding-video[data-index="0"].visible { transition-delay: 0s; }
.exploding-video[data-index="1"].visible { transition-delay: 0.1s; }
.exploding-video[data-index="2"].visible { transition-delay: 0.2s; }
.exploding-video[data-index="3"].visible { transition-delay: 0.3s; }
.exploding-video[data-index="4"].visible { transition-delay: 0.4s; }
.exploding-video[data-index="5"].visible { transition-delay: 0.5s; }
.exploding-video[data-index="6"].visible { transition-delay: 0.6s; }
.exploding-video[data-index="7"].visible { transition-delay: 0.7s; }

.exploding-video .video-stats {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: white;
}

/* Videos shrinking for review and analytics phases */
.exploding-video.shrink {
    transform: scale(0.9);
    opacity: 0.15;
}

/* ===== REVIEW CARDS - Video Approval Phase ===== */
.review-cards {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -35%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    pointer-events: none;
    z-index: 22;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.review-cards.visible {
    opacity: 1;
}

/* Swipe Indicators - now below cards */
.swipe-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 100px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
}

.review-cards.visible .swipe-indicators {
    opacity: 1;
}

.indicator-left,
.indicator-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    border: 3px solid;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.indicator-left {
    background: rgba(0, 0, 0, 0.5);
    color: #ef4444;
    border-color: #ef4444;
}

.indicator-right {
    background: rgba(0, 0, 0, 0.5);
    color: #22c55e;
    border-color: #22c55e;
}

.indicator-left:hover {
    transform: scale(1.15);
    background: #ef4444;
    color: white;
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.6);
}

.indicator-right:hover {
    transform: scale(1.15);
    background: #22c55e;
    color: white;
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.6);
}

.indicator-icon {
    font-size: 22px;
}

/* Card Stack - TikTok 9:16 aspect ratio */
.card-stack {
    position: relative;
    width: 300px;
    height: 533px;
    perspective: 1000px;
}

.review-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: var(--black);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.review-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

/* Stacked cards depth effect */
.card-bg-3 {
    transform: translateY(-12px) scale(0.94) rotate(-2deg);
    opacity: 0.3;
    z-index: 1;
}

.card-bg-2 {
    transform: translateY(-8px) scale(0.96) rotate(1deg);
    opacity: 0.5;
    z-index: 2;
}

.card-bg-1 {
    transform: translateY(-4px) scale(0.98) rotate(-1deg);
    opacity: 0.7;
    z-index: 3;
}

/* Two active cards - approve on top, decline underneath */
.card-approve {
    z-index: 5;
    transform: translateY(0) scale(1) rotate(0deg);
}

.card-decline {
    z-index: 4;
    transform: translateY(-4px) scale(0.95) rotate(-1deg);
    opacity: 1;
    transition: all 0.5s ease-out;
}

/* When approve card swipes away, decline card moves to front */
.card-approve.swiping-right ~ .card-decline {
    z-index: 5;
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 1;
}

/* Card Overlays */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card-overlay-approve {
    background: rgba(34, 197, 94, 0.85);
}

.card-overlay-decline {
    background: rgba(239, 68, 68, 0.85);
}

.overlay-icon {
    font-size: 64px;
    color: white;
    margin-bottom: 12px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.overlay-text {
    font-size: 24px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Swipe Animations - Slower and more dramatic */
@keyframes swipeRight {
    0% {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
    30% {
        transform: translateX(30px) rotate(5deg);
        opacity: 1;
    }
    100% {
        transform: translateX(250px) rotate(25deg);
        opacity: 0;
    }
}

@keyframes swipeLeft {
    0% {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
    30% {
        transform: translateX(-30px) rotate(-5deg);
        opacity: 1;
    }
    100% {
        transform: translateX(-250px) rotate(-25deg);
        opacity: 0;
    }
}

.review-card.swiping-right {
    animation: swipeRight 1.2s ease-out forwards;
    box-shadow: 0 10px 60px rgba(34, 197, 94, 0.5);
}

.review-card.swiping-right .card-overlay-approve {
    opacity: 1;
    animation: overlayPulse 0.4s ease-out;
}

.review-card.swiping-left {
    animation: swipeLeft 1.2s ease-out forwards;
    box-shadow: 0 10px 60px rgba(239, 68, 68, 0.5);
}

.review-card.swiping-left .card-overlay-decline {
    opacity: 1;
    animation: overlayPulse 0.4s ease-out;
}

@keyframes overlayPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Tagline */
.review-tagline {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.7s;
}

.review-cards.visible .review-tagline {
    opacity: 1;
    transform: translateY(0);
}

.review-tagline .accent {
    color: #FF6B5B;
}

/* Pulse animation for tagline */
@keyframes taglinePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.review-cards.visible .review-tagline {
    animation: taglinePulse 2s ease-in-out infinite 1s;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .card-stack {
        width: 220px;
        height: 391px; /* Maintain 9:16 ratio */
    }

    .swipe-indicators {
        gap: 80px;
        bottom: 15px;
    }

    .indicator-left,
    .indicator-right {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .overlay-icon {
        font-size: 48px;
    }

    .overlay-text {
        font-size: 18px;
    }

    .review-tagline {
        font-size: 16px;
    }
}

/* Analytics Tiles - 4x2 Grid Layout */
.analytics-tiles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    pointer-events: none;
    z-index: 25;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.analytics-tiles:has(.analytics-tile.visible) {
    opacity: 1;
}

.analytics-tile {
    position: relative;
    width: 180px;
    aspect-ratio: 1 / 1;
    padding: 14px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.analytics-tile.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered animation delays */
.analytics-tile[data-index="0"].visible { transition-delay: 0s; }
.analytics-tile[data-index="1"].visible { transition-delay: 0.05s; }
.analytics-tile[data-index="2"].visible { transition-delay: 0.1s; }
.analytics-tile[data-index="3"].visible { transition-delay: 0.15s; }
.analytics-tile[data-index="4"].visible { transition-delay: 0.2s; }
.analytics-tile[data-index="5"].visible { transition-delay: 0.25s; }
.analytics-tile[data-index="6"].visible { transition-delay: 0.3s; }
.analytics-tile[data-index="7"].visible { transition-delay: 0.35s; }

/* Header with icon and trend */
.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.analytics-icon {
    width: 28px;
    height: 28px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.analytics-icon svg {
    width: 16px;
    height: 16px;
    color: #6366f1;
}

.analytics-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.analytics-trend {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
}

.analytics-trend.positive {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.analytics-trend.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.analytics-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1;
}

/* Graph container */
.analytics-graph {
    height: 50px;
    width: 100%;
    margin-top: 4px;
    overflow: hidden;
}

.analytics-graph svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Line/Area chart animation - draw from left */
.analytics-graph svg path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    opacity: 0;
    transition: none;
}

.analytics-tile.visible .analytics-graph svg path {
    stroke-dashoffset: 0;
    opacity: 1;
    transition: stroke-dashoffset 1.2s ease-out 0.3s, opacity 0.3s ease 0.3s;
}

/* Area fill animation */
.analytics-graph svg path[fill^="url"] {
    clip-path: inset(0 100% 0 0);
    transition: none;
}

.analytics-tile.visible .analytics-graph svg path[fill^="url"] {
    clip-path: inset(0 0% 0 0);
    transition: clip-path 1.2s ease-out 0.3s;
}

/* Bar chart animation - grow from bottom */
.analytics-graph svg rect {
    transform: scaleY(0);
    transform-origin: bottom;
    transition: none;
}

.analytics-tile.visible .analytics-graph svg rect {
    transform: scaleY(1);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Staggered delay for bars */
.analytics-tile.visible .analytics-graph svg rect:nth-child(1) { transition-delay: 0.3s; }
.analytics-tile.visible .analytics-graph svg rect:nth-child(2) { transition-delay: 0.4s; }
.analytics-tile.visible .analytics-graph svg rect:nth-child(3) { transition-delay: 0.5s; }
.analytics-tile.visible .analytics-graph svg rect:nth-child(4) { transition-delay: 0.6s; }
.analytics-tile.visible .analytics-graph svg rect:nth-child(5) { transition-delay: 0.7s; }
.analytics-tile.visible .analytics-graph svg rect:nth-child(6) { transition-delay: 0.8s; }

/* Circle/dot animation */
.analytics-graph svg circle:not([r="22"]) {
    transform: scale(0);
    transform-origin: center;
    transition: none;
}

.analytics-tile.visible .analytics-graph svg circle:not([r="22"]) {
    transform: scale(1);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.3s;
}

/* Donut chart specific */
.analytics-graph.graph-donut {
    height: 50px;
    display: flex;
    justify-content: center;
}

.analytics-graph.graph-donut svg {
    width: 50px;
    height: 50px;
}

/* Donut chart animation */
.analytics-graph.graph-donut svg circle[stroke-dasharray] {
    stroke-dasharray: 0 138;
    transition: none;
}

.analytics-tile.visible .analytics-graph.graph-donut svg circle[stroke-dasharray] {
    stroke-dasharray: 113 138;
    transition: stroke-dasharray 1s ease-out 0.4s;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.scroll-hint span {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    color: var(--gray-400);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 100%;
    height: 100%;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.scroll-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Mobile step nav — hidden on desktop */
.scroll-step-nav {
    display: none;
}

/* ================================
   HOW IT WORKS - MOBILE RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
    .scroll-container {
        height: 950vh;
    }

    .phase-indicator {
        right: 20px;
    }

    .phase-text {
        font-size: clamp(28px, 3.5vw, 40px);
        white-space: normal;
        text-align: center;
        width: 90%;
    }

    .animation-stage {
        max-width: 700px;
        transform: scale(0.85);
    }
}

@media (max-width: 768px) {
    .scroll-container {
        height: 800vh;
    }

    .phase-indicator {
        right: 16px;
        gap: 12px;
    }

    .phase-dot {
        width: 10px;
        height: 10px;
    }

    .scroll-section-title {
        top: 110px;
    }

    .phase-label {
        top: 140px;
    }

    .phase-text {
        font-size: clamp(26px, 6vw, 38px);
        white-space: normal;
        text-align: center;
        width: 90vw;
    }

    .animation-stage {
        transform: scale(0.8);
    }

    .tile-briefing {
        transform: translate(-100%, -50%) scale(0.8);
    }

    .tile-briefing.visible {
        transform: translate(-100%, -50%) scale(1);
    }

    .tile-product {
        transform: translate(20%, -50%) scale(0.8);
    }

    .tile-product.visible {
        transform: translate(20%, -50%) scale(1);
    }

    .card-stack {
        width: 380px;
        height: 675px;
    }

    .analytics-tiles {
        transform: translate(-50%, -50%) scale(0.85);
    }

    .scroll-sticky {
        overflow: hidden;
    }

    .scroll-hint {
        top: 50%;
    }

    /* Mobile step nav buttons */
    .scroll-step-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        position: absolute;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 20;
    }

    .scroll-step-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 10px 18px;
        border: none;
        border-radius: 100px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.2s ease, opacity 0.2s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .scroll-step-btn svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .scroll-step-prev {
        background: rgba(255, 255, 255, 0.85);
        color: var(--gray-700);
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .scroll-step-next {
        background: var(--gray-900);
        color: white;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    }

    .scroll-step-btn:active {
        transform: scale(0.95);
    }

    .scroll-step-btn:disabled {
        opacity: 0.35;
        pointer-events: none;
    }

    .scroll-step-count {
        font-size: 13px;
        font-weight: 600;
        color: var(--gray-500);
        min-width: 36px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .scroll-container {
        height: 650vh;
    }

    .phase-indicator {
        display: none;
    }

    .animation-stage {
        transform: scale(0.65);
    }

    .analytics-tiles {
        transform: translate(-50%, -50%) scale(0.75);
    }
}

/* ================================
   FAQ SECTION
   ================================ */
.faq-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.faq-header-centered {
    text-align: center;
    margin-bottom: 48px;
}

.faq-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(254, 56, 66, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 20px;
}

.faq-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.faq-wrap_new {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.accordion_new {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion_new:hover {
    border-color: var(--gray-300);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.accordion-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.accordion-trigger:hover {
    background: var(--gray-50);
}

.title-accordion-wrap {
    flex: 1;
}

.accordion-title_new {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4;
}

.arrow-accordion {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.arrow-svg {
    width: 18px;
    height: 18px;
    color: var(--gray-400);
}

.accordion_new.open .arrow-accordion {
    transform: rotate(180deg);
}

.accordion_new.open .arrow-svg {
    color: var(--primary);
}

.accordion-content {
    padding: 0 24px 20px;
    display: none;
}

.accordion_new.open .accordion-content {
    display: block;
}

.accordion-text_new {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

.faq-footer {
    text-align: center;
    margin-top: 32px;
}

.faq-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.faq-link:hover {
    gap: 12px;
}

.faq-link svg {
    width: 20px;
    height: 20px;
}

/* FAQ Mobile Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-subtitle {
        font-size: 16px;
    }

    .accordion-trigger {
        padding: 16px 20px;
    }

    .accordion-title_new {
        font-size: 15px;
    }

    .accordion-content {
        padding: 0 20px 16px;
    }

    .accordion-text_new {
        font-size: 14px;
    }
}

/* ================================
   BUYOUT SECTION
   ================================ */
.buyout-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
}

.buyout-section .hero-background-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.buyout-section .mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.06;
}

.buyout-section .mesh-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
}

.buyout-section .mesh-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-cyan);
    bottom: -150px;
    left: -100px;
}

.buyout-section > .container {
    margin: 0 auto;
}

.buyout-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.buyout-text {
    color: var(--gray-900);
}

.buyout-section .section-title {
    color: var(--gray-900);
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 24px;
}

.new-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(254, 56, 66, 0.4);
}

.buyout-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.buyout-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.buyout-benefits li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.benefit-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
}

.benefit-text {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.5;
}

.buyout-demo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* Animated Story Flow */
.buyout-story-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 340px;
}

.flow-step {
    opacity: 0;
    transform: translateY(12px);
}

.buyout-story-flow.animate-in .flow-step {
    animation: flowStepIn 0.5s ease-out forwards;
    animation-delay: calc(var(--step) * 0.6s);
}

@keyframes flowStepIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flow-step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.flow-step-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Step 1: Video */
.flow-phone {
    width: 100px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
}

.flow-phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.flow-creator-avatar {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.flow-creator-avatar svg {
    width: 20px;
    height: 20px;
}

/* Connector between steps */
.flow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 36px;
    position: relative;
    opacity: 0;
}

.buyout-story-flow.animate-in > :nth-child(2) {
    animation: flowStepIn 0.4s ease-out forwards;
    animation-delay: 0.3s;
}

.buyout-story-flow.animate-in > :nth-child(4) {
    animation: flowStepIn 0.4s ease-out forwards;
    animation-delay: 0.9s;
}

.buyout-story-flow.animate-in > :nth-child(6) {
    animation: flowStepIn 0.4s ease-out forwards;
    animation-delay: 1.5s;
}

.flow-connector-line {
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        var(--gray-300) 0px,
        var(--gray-300) 4px,
        transparent 4px,
        transparent 8px
    );
}

.flow-connector-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
}

.buyout-story-flow.animate-in > :nth-child(2) .flow-connector-dot {
    animation: connectorDotMove 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

.buyout-story-flow.animate-in > :nth-child(4) .flow-connector-dot {
    animation: connectorDotMove 2s ease-in-out infinite;
    animation-delay: 1.1s;
}

.buyout-story-flow.animate-in > :nth-child(6) .flow-connector-dot {
    animation: connectorDotMove 2s ease-in-out infinite;
    animation-delay: 1.7s;
}

@keyframes connectorDotMove {
    0% { top: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: calc(100% - 6px); opacity: 0; }
}

/* Step 2: Viral metrics */
.flow-viral {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 200px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.flow-views-counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flow-eye-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.flow-view-count {
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.flow-engagement-bar {
    width: 100%;
    height: 6px;
    background: var(--gray-100);
    border-radius: 3px;
    overflow: hidden;
}

.flow-engagement-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 3px;
}

.buyout-story-flow.animate-in .flow-engagement-fill {
    animation: engagementGrow 1.5s ease-out forwards;
    animation-delay: 1s;
}

@keyframes engagementGrow {
    to { width: 85%; }
}

.flow-engagement-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

/* Step 3: Buyout action */
.flow-buyout-action {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-license-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    color: var(--gray-900);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.flow-license-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
}

.flow-click-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1.5px solid var(--gray-300);
    border-radius: 50%;
    opacity: 0;
}

.buyout-story-flow.animate-in .flow-click-ring {
    animation: clickRing 2.5s ease-out infinite;
    animation-delay: 1.8s;
}

@keyframes clickRing {
    0% { transform: scale(0.5); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Step 4: Channel icons */
.flow-scale-channels {
    display: flex;
    gap: 12px;
}

.flow-channel-icon {
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.flow-channel-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gray-600);
}

.buyout-story-flow.animate-in .flow-channel-icon {
    animation: channelPop 0.4s ease-out forwards;
    animation-delay: var(--delay);
}

@keyframes channelPop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* CTA button below flow */
.buyout-demo .buyout-cta-btn {
    opacity: 0;
    transform: translateY(8px);
    box-shadow: 0 8px 30px rgba(254, 56, 66, 0.4);
}

.buyout-story-flow.animate-in ~ .buyout-cta-btn {
    animation: flowStepIn 0.5s ease-out forwards;
    animation-delay: 2.4s;
}

/* Buyout Modal */
.buyout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.buyout-modal.active {
    display: flex;
}

.buyout-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.buyout-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    background: transparent;
    border-radius: 16px;
    overflow: visible;
}

.buyout-modal-close {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: background 0.2s ease;
}

.buyout-modal-close:hover {
    background: rgba(255, 255, 255, 1);
}

.buyout-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: #374151;
    stroke-width: 2;
}

.buyout-modal-iframe-container {
    width: 100%;
    aspect-ratio: 16 / 10;
}

.buyout-modal-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

/* Buyout Section Mobile Responsive */
@media (max-width: 1024px) {
    .buyout-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .buyout-section {
        padding: 80px 0;
    }

    .buyout-story-flow {
        align-items: center;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .buyout-section {
        padding: 72px 0;
    }

    .buyout-section .section-title {
        font-size: 28px;
    }

    .buyout-description {
        font-size: 16px;
    }

    .benefit-icon {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .benefit-text {
        font-size: 15px;
    }

    .flow-phone {
        width: 84px;
        height: 120px;
    }

    .flow-phone-screen {
        width: 70px;
        height: 100px;
    }

    .flow-viral {
        width: 180px;
        padding: 16px 20px;
    }

    .flow-channel-icon {
        width: 42px;
        height: 42px;
    }

    .flow-connector {
        height: 28px;
    }
}

/* ================================
   PRICING SECTION — "The Un-Pricing Page"
   ================================ */
.pricing-section {
    padding: 140px 0 120px;
    background: var(--white);
    position: relative;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: auto 1000px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #FFF0F0, #FFE8E8);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.pricing-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--black);
    margin-bottom: 40px;
}

/* Killed Prices — the visual hook */
.pricing-killed {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pricing-killed-item {
    position: relative;
    padding: 10px 24px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: -0.01em;
    overflow: hidden;
}

.pricing-killed-item span {
    position: relative;
}

.killed-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    transform: translate(-50%, -50%) rotate(-12deg) scaleX(0);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 8px rgba(254, 56, 66, 0.4);
}

.pricing-section.in-view .pricing-killed-item:nth-child(1) .killed-line {
    transform: translate(-50%, -50%) rotate(-12deg) scaleX(1);
    transition-delay: 0.3s;
}
.pricing-section.in-view .pricing-killed-item:nth-child(2) .killed-line {
    transform: translate(-50%, -50%) rotate(-12deg) scaleX(1);
    transition-delay: 0.5s;
}
.pricing-section.in-view .pricing-killed-item:nth-child(3) .killed-line {
    transform: translate(-50%, -50%) rotate(-12deg) scaleX(1);
    transition-delay: 0.7s;
}
.pricing-section.in-view .pricing-killed-item:nth-child(4) .killed-line {
    transform: translate(-50%, -50%) rotate(-12deg) scaleX(1);
    transition-delay: 0.9s;
}

.pricing-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Grid — 4 Benefit Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.pricing-perk-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.pricing-section.in-view .pricing-perk-card {
    opacity: 1;
    transform: translateY(0);
}

.pricing-section.in-view .pricing-perk-card:nth-child(1) { transition-delay: 0.6s; }
.pricing-section.in-view .pricing-perk-card:nth-child(2) { transition-delay: 0.75s; }
.pricing-section.in-view .pricing-perk-card:nth-child(3) { transition-delay: 0.9s; }
.pricing-section.in-view .pricing-perk-card:nth-child(4) { transition-delay: 1.05s; }

.pricing-perk-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.pricing-perk-icon {
    width: 48px;
    height: 48px;
    margin-top: 56px;
    margin-bottom: 24px;
    color: var(--primary);
}

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

.pricing-perk-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.pricing-perk-desc {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.pricing-perk-highlight {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* Card 1 */
.pricing-perk-card:nth-child(1) .pricing-perk-icon { color: #4a9e5c; }
.pricing-perk-card:nth-child(1) .pricing-perk-highlight {
    background: rgba(74, 158, 92, 0.1);
    color: #4a9e5c;
}

/* Card 2 */
.pricing-perk-card:nth-child(2) .pricing-perk-icon { color: #5085c0; }
.pricing-perk-card:nth-child(2) .pricing-perk-highlight {
    background: rgba(80, 133, 192, 0.1);
    color: #5085c0;
}

/* Card 3 */
.pricing-perk-card:nth-child(3) .pricing-perk-icon { color: #c07830; }
.pricing-perk-card:nth-child(3) .pricing-perk-highlight {
    background: rgba(192, 120, 48, 0.1);
    color: #c07830;
}

/* Card 4 */
.pricing-perk-featured {
    background: var(--gray-50);
    border-color: var(--gray-200);
}

.pricing-perk-featured .pricing-perk-icon {
    color: #8060b0;
}

.pricing-perk-featured .pricing-perk-title {
    color: var(--black);
}

.pricing-perk-featured .pricing-perk-desc {
    color: var(--gray-600);
}

.pricing-perk-featured-badge {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: rgba(128, 96, 176, 0.1);
    color: #8060b0;
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* Briefing Generator Mini Preview */
.briefing-preview {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.briefing-preview-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.briefing-preview-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.briefing-preview-dot:first-child {
    background: #FF5F57;
}
.briefing-preview-dot:nth-child(2) {
    background: #FFBD2E;
}
.briefing-preview-dot:nth-child(3) {
    background: #28C840;
    margin-right: 8px;
}

.briefing-preview-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.briefing-preview-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.briefing-field-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.briefing-field-value {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.briefing-preview-output {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.briefing-output-line {
    height: 6px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.08));
    border-radius: 3px;
    width: 100%;
}

.briefing-output-line.short {
    width: 60%;
}

.briefing-output-line.medium {
    width: 80%;
}

.briefing-preview-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    margin-top: 4px;
}

.pricing-perk-link {
    color: #6A1FC0;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pricing-perk-link:hover {
    color: #4A0E90;
}

/* Pricing CTA */
.pricing-cta {
    text-align: center;
}

.pricing-cta-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray-400);
}

/* Pricing Responsive */
@media (max-width: 1024px) {
    .pricing-section {
        padding: 100px 0 80px;
    }

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

    .pricing-header {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 0 60px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pricing-killed {
        gap: 12px;
    }

    .pricing-killed-item {
        font-size: 16px;
        padding: 8px 16px;
    }

    .pricing-title {
        font-size: 36px;
    }

    .pricing-subtitle {
        font-size: 16px;
    }

    .pricing-perk-card {
        padding: 32px 24px;
    }
}

/* ================================
   GLOBAL 480px FINE-TUNING
   ================================ */
@media (max-width: 480px) {
    .container,
    .container-wide {
        padding: 0 16px;
    }

    .section-title-center {
        font-size: 24px;
    }

    .section-subtitle-center {
        font-size: 14px;
    }

    /* Hero */
    .hero-main {
        padding-top: 100px;
    }

    .hero-headline {
        font-size: clamp(36px, 10vw, 48px);
    }

    .hero-subheadline {
        font-size: 15px;
    }

    .hero-actions {
        gap: 12px;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 24px;
        border-radius: 16px;
    }

    /* Pricing */
    .pricing-section {
        padding: 60px 0 40px;
    }

    .pricing-title {
        font-size: 28px;
    }

    .pricing-perk-card {
        padding: 24px 20px;
    }

    .pricing-killed-item {
        font-size: 14px;
        padding: 6px 12px;
    }

    /* FAQ */
    .faq-section {
        padding: 60px 0;
    }

    /* Footer */
    .footer {
        padding: 60px 0 24px;
    }

    /* CTA section */
    .cta-section {
        padding: 100px 0;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-text {
        font-size: 15px;
    }

    .cta-features {
        flex-direction: column;
        gap: 8px;
    }

    /* Advertiser/Creator CTA sections */
    .advertiser-section {
        padding: 40px 0;
    }

    .advertiser-title {
        font-size: 24px;
    }

    .advertiser-desc {
        font-size: 14px;
    }
}

/* ================================
   LANGUAGE SWITCHER
   ================================ */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--gray-400);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}

.lang-btn:hover {
    color: var(--gray-900);
    background: var(--gray-100);
}

.lang-btn.lang-active {
    color: var(--gray-900);
    background: var(--gray-100);
}

.lang-divider {
    color: var(--gray-300);
    font-size: 13px;
    user-select: none;
}

/* Desktop language switcher (fixed top right) */
.desktop-lang-switcher {
    position: absolute;
    top: 20px;
    right: 32px;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 2px;
}

.desktop-lang-btn {
    background: none;
    border: none;
    color: var(--gray-400);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 5px 7px;
    border-radius: 6px;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}

.desktop-lang-btn:hover,
.desktop-lang-btn.lang-active {
    color: var(--gray-900);
    background: rgba(0, 0, 0, 0.06);
}

.desktop-lang-divider {
    color: var(--gray-300);
    font-size: 12px;
    user-select: none;
}

/* Mobile language switcher */
.mobile-lang-switcher {
    display: none;
}

@media (max-width: 768px) {
    .desktop-lang-switcher {
        display: none;
    }

    .mobile-lang-switcher {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid var(--gray-100);
    }

    .mobile-lang-btn {
        background: none;
        border: none;
        color: var(--gray-500);
        font-family: inherit;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.5px;
        padding: 8px 16px;
        border-radius: 8px;
        cursor: pointer;
        transition: color 0.2s, background 0.2s;
    }

    .mobile-lang-btn:hover,
    .mobile-lang-btn.lang-active {
        color: var(--gray-900);
        background: rgba(0, 0, 0, 0.05);
    }

    .mobile-lang-divider {
        color: var(--gray-300);
        font-size: 14px;
        user-select: none;
    }
}
