html {
    scroll-behavior: smooth;
}

:root {
    /* Light Mode Default */
    --bg-color: #FFFFFF;
    --surface-color: #F8FAFC;
    --primary-color: #4F46E5;
    /* Indigo 600 */
    --primary-hover: #4338ca;
    --text-primary: #0F172A;
    /* Slate 900 */
    --text-secondary: #64748B;
    /* Slate 500 */

    --accent-glow: rgba(79, 70, 229, 0.05);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --card-bg: #FFFFFF;
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);

    /* Dark indigo to purple for Light Mode */
    --text-gradient: linear-gradient(135deg, #4F46E5 0%, #9333EA 100%);

    --badge-bg: rgba(79, 70, 229, 0.08);
    --badge-border: rgba(79, 70, 229, 0.15);
    --badge-text: #4338CA;
    /* Indigo 700 for better contrast */

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --max-width: 1200px;
}

[data-theme="dark"] {
    --bg-color: #030712;
    --surface-color: #111827;
    --text-primary: #F9FAFB;
    --text-secondary: #9CA3AF;

    --accent-glow: rgba(79, 70, 229, 0.15);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --card-bg: rgba(17, 24, 39, 0.7);
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);

    /* White to light indigo for Dark Mode (Keep existing) */
    --text-gradient: linear-gradient(135deg, #FFF 0%, #A5B4FC 100%);

    --badge-bg: rgba(79, 70, 229, 0.1);
    --badge-border: rgba(79, 70, 229, 0.2);
    --badge-text: #A5B4FC;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.5;
    overflow-x: hidden;
}

.ambient-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, rgba(3, 7, 18, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* Fallback */
}

.sub-headline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

/* Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    background: var(--nav-bg);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(79, 70, 229, 0.5);
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

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

.theme-toggle {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.theme-toggle:hover {
    background: var(--glass-bg);
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--glass-bg);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary-sm {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    font-size: 0.9rem;
    border-radius: 6px;
    text-decoration: none;
}

.btn-ghost {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-ghost:hover {
    color: var(--text-primary);
}

/* Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1500px;
    /* Enable 3D space */
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    background: var(--badge-bg);
    border: 1px solid var(--badge-border);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--badge-text);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--badge-text);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--badge-text);
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Social Proof Ticker */
.social-proof-ticker {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.ticker-separator {
    color: var(--glass-border);
}

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

/* Glass Card 3D Visual */
.glass-card {
    position: relative;
    width: 400px;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);

    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.hero-visual:hover .glass-card {
    transform: rotateY(-5deg) rotateX(2deg);
}

@keyframes float {
    0% {
        transform: translateY(0) rotateY(-10deg) rotateX(5deg);
    }

    50% {
        transform: translateY(-20px) rotateY(-10deg) rotateX(5deg);
    }

    100% {
        transform: translateY(0) rotateY(-10deg) rotateX(5deg);
    }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #34D399;
    /* Emerald 400 */
    background: rgba(52, 211, 153, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #34D399;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(52, 211, 153, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
    }
}

/* Code Styles */
.code-block {
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    color: #D1D5DB;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.indent {
    padding-left: 1.5rem;
}

.keyword {
    color: #C084FC;
}

/* Purple */
.variable {
    color: #60A5FA;
}

/* Blue */
.string {
    color: #34D399;
}

/* Green */
.value {
    color: #F472B6;
}

/* Pink */
.function {
    color: #FCD34D;
}

/* Yellow */

/* Footer of Card */
.card-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.verification-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Mobile Notification Popout */
.mobile-notification-card {
    position: absolute;
    right: -40px;
    bottom: 40px;
    background: #1F2937;
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 12px;
    width: 220px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transform: translateZ(40px);
    /* Push it forward in Z space */
    animation: float-delayed 6s ease-in-out infinite reverse;
}

@keyframes float-delayed {
    0% {
        transform: translateZ(40px) translateY(0);
    }

    50% {
        transform: translateZ(40px) translateY(-15px);
    }

    100% {
        transform: translateZ(40px) translateY(0);
    }
}

.notif-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F472B6, #C084FC);
}

.notif-subtitle {
    font-size: 0.75rem;
    color: #34D399;
}

.notif-title {
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-xs-accept {
    width: 100%;
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 0.4rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-xs-accept:hover {
    background: var(--primary-hover);
}

/* Bento Grid Section */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.how-it-works-section {
    padding: 6rem 0;
    /* increased padding */
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    /* Removed fixed rows to allow content to flow naturally */
    grid-auto-rows: minmax(280px, auto);
}

.bento-card {
    background: rgba(17, 24, 39, 0.7);
    /* Surface 900 with opacity */
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

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

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Card Sizes */
.card-large {
    grid-column: span 8;
    background: var(--card-bg);
    /* Use theme variable */
    border: 1px solid var(--glass-border);
}

.card-medium {
    grid-column: span 4;
    background: var(--card-bg);
    /* Use theme variable */
    border: 1px solid var(--glass-border);
}

.card-small {
    grid-column: span 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4338ca 100%);
}

.card-small .card-content {
    text-align: center;
}

.card-small .stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.card-small p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Layout Adjustments */
/* Row 1: Large (8) + Medium (4) [Escrow] */
/* Row 2: Medium (8) [Smart Briefs] + Small (4) [Speed] */

.bento-grid> :nth-child(2) {
    /* Escrow */
    grid-column: span 4;
}

.bento-grid> :nth-child(3) {
    /* Smart Briefs - Make wide */
    grid-column: span 8;
}

.bento-grid> :nth-child(4) {
    /* Speed */
    grid-column: span 4;
}


/* Visuals */
.card-visual {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Scanning Visual */
.profile-card {
    position: absolute;
    bottom: -20px;
    right: 40px;
    width: 200px;
    height: 140px;
    background: #1F2937;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    transform: rotate(-5deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Vertical Creator Card (TikTok Ratio) */
.creator-card-vertical {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 420px;
    /* Taller fixed height */
    position: relative;
}

.creator-card-vertical:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.vertical-card-header {
    height: 240px;
    position: relative;
    background-size: cover;
    background-position: center 20%;
}

.bg-influencer-sarah {
    background-image: url('assets/influencers/sarah.png');
}

.bg-influencer-marcus {
    background-image: url('assets/influencers/marcus.png');
}

.bg-influencer-bella {
    background-image: url('assets/influencers/bella.png');
}

.verified-badge-large {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #2563EB;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.vertical-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.stat-row-vertical {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #64748B;
    border-top: 1px solid #F1F5F9;
    background: #F8FAFC;
    padding: 0.5rem;
    border-radius: 6px;
    margin: 0.5rem 0;
}

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

.stat-val-v {
    font-weight: 700;
    color: #0F172A;
    font-size: 0.9rem;
}

/* Benefits Section */
.brand-benefits-section {
    padding: 6rem 0;
    background: var(--surface-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.benefit-card {
    padding: 2rem;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
    box-shadow: var(--card-shadow);
}

.benefit-card:hover {
    background: var(--glass-bg);
    transform: translateY(-5px);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.benefit-desc {
    color: var(--text-secondary);
    line-height: 1.6;
}



.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.benefit-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    margin-bottom: 0.75rem;
}

.profile-lines .line {
    height: 8px;
    background: #374151;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.w-60 {
    width: 60%;
}

.w-40 {
    width: 40%;
}

.scan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #34D399;
    /* Green scan line */
    box-shadow: 0 0 10px #34D399;
    animation: scan 3s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes scan {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.check-marks .check-item {
    position: absolute;
    color: #34D399;
    font-weight: bold;
    background: rgba(52, 211, 153, 0.1);
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 12px;
    animation: pop-in 3s infinite;
}

@keyframes pop-in {

    0%,
    40% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    60% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Shield Visual */
.visual-shield {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.2;
    transform: scale(1.5) translate(40px, 40px);
}

.shield-icon {
    color: var(--primary-color);
    width: 120px;
    height: 120px;
}

/* Brief Visual */
.visual-brief {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 2rem;
}

.form-mock {
    width: 200px;
    background: #1F2937;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem;
    transform: perspective(600px) rotateY(-10deg) rotateX(10deg);
}

.form-row {
    margin-bottom: 0.75rem;
}

.form-row .label {
    width: 40px;
    height: 6px;
    background: #4B5563;
    margin-bottom: 4px;
    border-radius: 2px;
}

.form-row .input {
    width: 100%;
    height: 20px;
    background: #374151;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.typing-effect::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 40%;
    background: #4F46E5;
    opacity: 0.5;
    animation: type 2s steps(10) infinite;
}

@keyframes type {
    0% {
        width: 0;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 70%;
    }
}


/* Responsiveness */
@media (max-width: 968px) {
    h1 {
        font-size: 3rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 4rem;
    }

    .cta-group {
        justify-content: center;
    }

    .social-proof-ticker {
        justify-content: center;
    }

    .ticker-content {
        justify-content: center;
    }

    .app-sidebar {
        display: none;
    }

    .search-bar-mock {
        width: 100%;
    }
}

/* =========================================
   Creator Section (Mobile App)
   ========================================= */
.creator-hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.creator-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-visual-mobile {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1500px;
}

/* Mobile Phone Mockup */
.mobile-app-mock {
    width: 320px;
    height: 640px;
    background: #0F172A;
    /* Dark theme app */
    border-radius: 40px;
    border: 8px solid #334155;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.3s ease;
    font-family: var(--font-sans);
}

.mobile-app-mock:hover {
    transform: rotateY(-5deg) rotateX(2deg) translateY(-10px);
}

.mobile-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #334155;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 20;
}

.mobile-app-content {
    padding: 24px;
    height: 100%;
    /* FORCE Dark Mode for App Mock internals, regardless of theme */
    color: white;
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

/* App Internal UI */
.m-app-header {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.m-menu-icon {
    font-size: 1.2rem;
    color: #94A3B8;
}

.m-profile-pic {
    width: 32px;
    height: 32px;
    background: #6366F1;
    border-radius: 50%;
}

/* Wallet */
.m-wallet-section {
    margin-bottom: 2rem;
}

.m-wallet-label {
    font-size: 0.8rem;
    color: #94A3B8;
    margin-bottom: 0.25rem;
}

.m-wallet-balance {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.m-wallet-sub {
    font-size: 0.8rem;
    color: #34D399;
    margin-bottom: 1.5rem;
}

.m-wallet-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
}

.chart-bar {
    flex: 1;
    background: #334155;
    border-radius: 4px;
}

.chart-bar.active {
    background: #6366F1;
}

/* Active Gigs */
.m-section-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #E2E8F0;
}

.m-gig-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.m-gig-item {
    background: #1E293B;
    padding: 0.75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.m-gig-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #FFF;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.m-gig-info {
    flex: 1;
}

.m-gig-name {
    font-size: 0.9rem;
    font-weight: 500;
}

.m-gig-deadline {
    font-size: 0.75rem;
    color: #94A3B8;
}

.m-gig-status {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
}

.status-orange {
    background: rgba(245, 158, 11, 0.2);
    color: #F59E0B;
}

.status-green {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

/* Bottom Nav */
.m-bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #0F172A;
    border-top: 1px solid #334155;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 1.25rem;
}

.nav-item.active {
    color: #6366F1;
}

.nav-item {
    color: #64748B;
}

/* Deal Room Overlay */
.deal-room-overlay {
    position: absolute;
    bottom: -150px;
    /* Peek state */
    left: 0;
    right: 0;
    height: 300px;
    background: #1E293B;
    border-radius: 24px 24px 0 0;
    border-top: 1px solid #475569;
    padding: 1.5rem;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    animation: float-up 4s ease-in-out infinite alternate;
}

@keyframes float-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-40px);
    }
}

.deal-handle-bar {
    width: 40px;
    height: 4px;
    background: #475569;
    border-radius: 2px;
    margin: 0 auto 1.5rem auto;
}

.deal-content h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.deal-brief-item {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.check-circle {
    width: 16px;
    height: 16px;
    border: 2px solid #6366F1;
    border-radius: 50%;
}

.upload-zone {
    border: 2px dashed #475569;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: #94A3B8;
    font-size: 0.8rem;
    gap: 8px;
    margin-bottom: 1rem;
}

.chat-preview {
    background: #334155;
    padding: 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
}

@media (max-width: 968px) {
    .creator-hero-container {
        flex-direction: column;
    }
}

/* =========================================
   Brand Section (App Window)
   ========================================= */
.brand-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.app-window {
    background: #F8FAFC;
    /* Slate 50 - Light Theme inside the window */
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    max-width: 1200px;
    margin: 0 auto;
    font-family: var(--font-sans);
    color: #1E293B;
    /* Slate 800 for text inside */
}

/* App Header (Mock Browser/App Header) */
.app-header {
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-bar-mock {
    position: relative;
    width: 60%;
    max-width: 600px;
}

.search-bar-mock input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    background: #F1F5F9;
    font-size: 0.95rem;
    color: #1E293B;
}

.search-icon-mock {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748B;
}

.ai-pill {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: #EFF6FF;
    color: #2563EB;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* App Layout */
.app-body {
    display: flex;
    min-height: 600px;
    /* specific height for the window */
}

.app-sidebar {
    width: 260px;
    background: #FFFFFF;
    border-right: 1px solid #E2E8F0;
    padding: 1.5rem;
}

.filter-group-mock {
    margin-bottom: 1.5rem;
}

.filter-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #64748B;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.filter-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #334155;
}

/* App Main Content */
.app-content {
    flex: 1;
    padding: 1.5rem;
    background: #F8FAFC;
    overflow-y: auto;
    /* Allow scrolling inside the fake window if needed */
}

.grid-mock {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.creator-card-mock {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.creator-card-mock:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Reusing visual styles but scoped */
.mock-header {
    height: 140px;
    background: #E2E8F0;
    position: relative;
}

.mock-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px;
    border-radius: 6px;
    display: flex;
}

.mock-body {
    padding: 1rem;
}

.mock-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top: -30px;
    /* Half overlay */
    margin-bottom: 0.75rem;
    border: 2px solid #FFF;
    position: relative;
    z-index: 2;
}

.mock-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0F172A;
}

.mock-handle {
    font-size: 0.8rem;
    color: #64748B;
    margin-bottom: 1rem;
}

.mock-stats {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
}

.m-stat-val {
    font-weight: 700;
    font-size: 0.85rem;
    color: #0F172A;
}

.m-stat-lbl {
    font-size: 0.7rem;
    color: #64748B;
}

.mock-safety {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #059669;
    margin-bottom: 1rem;
    background: #ECFDF5;
    padding: 2px 6px;
    border-radius: 4px;
    width: fit-content;
}

.mock-btn {
    width: 100%;
    background: #2563EB;
    color: white;
    border: none;
    padding: 0.6rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.mock-btn:hover {
    background: #1D4ED8;
}

/* Colors for Card Headers */
.bg-rose {
    background: #FECACA;
}

.bg-blue {
    background: #BFDBFE;
}

.bg-purple {
    background: #D8B4FE;
}

.bg-av-rose {
    background: #F472B6;
}

.bg-av-blue {
    background: #60A5FA;
}

.bg-av-purple {
    background: #C084FC;
}

/* Responsiveness for App Window */
@media (max-width: 900px) {
    .app-sidebar {
        display: none;
    }

    .search-bar-mock {
        width: 100%;
    }
}

/* Utility to force white text (Specificity Override) */
.text-white-force,
.text-white-force * {
    color: #FFFFFF !important;
}

/* --- Extended Brand Page Styles --- */

/* Detailed Benefits Cards */
.brand-benefits-section {
    padding: 8rem 0;
    background: var(--surface-color);
}

.benefit-card {
    padding: 2.5rem;
    height: 100%;
    border: 1px solid var(--glass-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-lead {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.why-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-color);
    border-top: 1px solid var(--glass-border);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns for FAQs */
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(79, 70, 229, 0.3);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-icon-q {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    padding-left: 2rem;
    /* Indent to align with text of question */
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-answer {
        padding-left: 0;
    }
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--glass-border);
    background: var(--nav-bg);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
}

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

/* Social Proof Section */
.social-proof-section {
    padding: 3rem 0;
    border-bottom: 1px solid var(--glass-border);
    background: var(--surface-color);
}

.proof-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.proof-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.proof-content strong {
    color: var(--text-primary);
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack .avatar {
    width: 40px;
    height: 40px;
    border: 3px solid var(--surface-color);
    margin-left: -12px;
    background-color: #ddd;
    /* Fallback */
    background-size: cover;
    border-radius: 50%;
    /* Ensure round */
}

/* Generate different colors for avatars */
.s-1 {
    background: #FF6B6B;
}

.s-2 {
    background: #4ECDC4;
}

.s-3 {
    background: #45B7D1;
}

.s-4 {
    background: #96CEB4;
}

.s-5 {
    background: #FFEEAD;
}


/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.step-card {
    padding: 2.5rem;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(79, 70, 229, 0.1);
    /* Very subtle primary color */
    position: absolute;
    top: 1rem;
    right: 2rem;
    line-height: 1;
}

.step-card h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--surface-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 2rem;
    background: var(--bg-color);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .proof-content {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Comparison Table Section */
.comparison-section {
    padding: 6rem 0;
    background: var(--bg-color);
}

.comparison-table-container {
    max-width: 900px;
    margin: 4rem auto 0;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table th {
    background: var(--surface-color);
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table .feature-col {
    width: 40%;
    font-weight: 500;
}

.comparison-table .echo-col {
    width: 30%;
    color: var(--primary-color);
    font-weight: 700;
    background: rgba(79, 70, 229, 0.03);
}

.comparison-table .trad-col {
    width: 30%;
    color: var(--text-secondary);
}

/* Audience Selection Section */
.audience-route-section {
    padding: 8rem 0;
    background: var(--surface-color);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.audience-card {
    padding: 3rem;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.audience-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 30px 60px -12px rgba(79, 70, 229, 0.2);
}

.audience-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.audience-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Performance Dashboard Mockup Elements */
.perf-dashboard-mock {
    background: var(--bg-color);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

.perf-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.perf-stat-card {
    padding: 1.5rem;
    background: var(--surface-color);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.perf-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.perf-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.perf-chart-mock {
    height: 150px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding-top: 1rem;
}

.perf-bar {
    flex: 1;
    background: var(--primary-color);
    opacity: 0.3;
    border-radius: 4px 4px 0 0;
    transition: opacity 0.3s;
}

.perf-bar.active {
    opacity: 1;
}

/* Integrations Section */
.integrations-section {
    padding: 6rem 0;
    text-align: center;
}

.integration-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
    filter: grayscale(1);
    opacity: 0.6;
}

.integration-logos img {
    height: 32px;
    width: auto;
}

@media (max-width: 768px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .perf-stat-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Page Styles */
.pricing-section {
    padding: 160px 0 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    padding: 3rem;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.2);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.tier-name {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.price-sub {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.pricing-features li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: 700;
}

/* Benefits Table */
.benefits-section {
    padding: 6rem 0;
}

/* Early Access CTA Section */
.early-access-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.early-access-content {
    max-width: 600px;
    margin: 0 auto;
}

.early-access-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.early-access-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.contact-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4);
}

.contact-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.5);
    background: var(--primary-hover);
}

/* Scroll Indicator Styles */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 10;
    cursor: pointer;
    text-decoration: none;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    position: relative;
}

.scroll-dot {
    width: 4px;
    height: 4px;
    background-color: var(--text-secondary);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-ping 2s infinite;
}

@keyframes scroll-ping {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Ensure hero sections have relative positioning for indicator */
.hero-section,
.brand-hero-section,
.creator-hero-section {
    position: relative;
}