:root {
    --orange: #F7901E;
    --orange-light: #FBB35A;
    --coral: #EE5A5A;
    --magenta: #D63C92;
    --purple: #8B3FD8;
    --blue: #4F6BF5;
    --blue-light: #7C8DF7;
    --grad: linear-gradient(90deg, #F7901E, #EE5A5A, #D63C92, #8B3FD8, #4F6BF5);
    --bg-dark: #0D0D14;
    --bg-surface: #17171F;
    --bg-card: #1E1E28;
    --bg-input: #26262F;
    --text-white: #F5F5F7;
    --text-muted: #A0A0AD;
    --text-dim: #6E6E7C;
    --success: #34D399;
}#pitch-root, #pitch-root * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}#pitch-root {
    font-family: 'Poppins', 'Plus Jakarta Sans', system-ui, sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

/* Animated Background */
#pitch-root /* Animated Background */
.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}#pitch-root .bg-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: floatOrb 25s ease-in-out infinite;
}#pitch-root .orb-1 {
    width: 700px;
    height: 700px;
    background: var(--orange);
    top: -300px;
    left: -200px;
}#pitch-root .orb-2 {
    width: 600px;
    height: 600px;
    background: var(--blue);
    bottom: -200px;
    right: -200px;
    animation-delay: -12s;
}#pitch-root .orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--orange), var(--blue));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -6s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.05); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* Navigation */
#pitch-root /* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}#pitch-root .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}#pitch-root .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}#pitch-root .logo-img {
    height: 40px;
    width: auto;
}#pitch-root .logo-text {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}#pitch-root .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}#pitch-root .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}#pitch-root .nav-links a:hover {
    color: var(--text-white);
}#pitch-root .nav-cta {
    padding: 10px 20px !important;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 100px;
    color: white !important;
}

/* Hero Section */
#pitch-root /* Hero Section */
.hero {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    text-align: center;
}#pitch-root .hero-badge {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(247, 144, 30, 0.15);
    border: 1px solid rgba(247, 144, 30, 0.3);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 32px;
}#pitch-root .hero h1 {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 32px;
}#pitch-root .gradient-text-orange {
    background: linear-gradient(135deg, #F7901E, #EE5A5A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}#pitch-root .gradient-text {
    background: linear-gradient(90deg, #F7901E 0%, #D63C92 50%, #4F6BF5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}#pitch-root .hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}#pitch-root .hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}#pitch-root .btn-primary {
    padding: 14px 24px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}#pitch-root .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(247, 144, 30, 0.3);
}#pitch-root .btn-secondary {
    padding: 14px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}#pitch-root .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}#pitch-root .hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}#pitch-root .stat {
    text-align: center;
}#pitch-root .stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}#pitch-root .stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* Demo Intro */
#pitch-root /* Demo Intro */
.demo-intro,
#pitch-root .b2b-intro {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 100px 40px 60px;
}#pitch-root .demo-intro h2,
#pitch-root .b2b-intro h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}#pitch-root .demo-intro p,
#pitch-root .b2b-intro p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}#pitch-root .b2b-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(79, 107, 245, 0.15);
    border: 1px solid rgba(79, 107, 245, 0.3);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-light);
    margin-bottom: 20px;
}

/* Demo Sections */
#pitch-root /* Demo Sections */
.demo-section {
    position: relative;
    z-index: 10;
    padding: 80px 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}#pitch-root .demo-section.visible {
    opacity: 1;
    transform: translateY(0);
}#pitch-root .section-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}#pitch-root .layout-video-left .video-wrapper {
    order: 1;
}#pitch-root .layout-video-left .content-wrapper {
    order: 2;
}#pitch-root .layout-chat-left .content-wrapper {
    order: 1;
}#pitch-root .layout-chat-left .video-wrapper {
    order: 2;
}

/* Video Wrapper */
#pitch-root /* Video Wrapper */
.video-wrapper {
    position: relative;
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
}

/* Video Text - above the video */
#pitch-root /* Video Text - above the video */
.video-overlay {
    padding: 0 8px 20px 8px;
}#pitch-root .video-overlay .section-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(247, 144, 30, 0.2);
    border: 1px solid var(--orange);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 12px;
}#pitch-root .video-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}#pitch-root .video-overlay p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* The actual video container */
#pitch-root /* The actual video container */
.demo-video {
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(247, 144, 30, 0.1), rgba(79, 107, 245, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
}#pitch-root .demo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}#pitch-root .video-placeholder {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
    background: linear-gradient(135deg, rgba(247, 144, 30, 0.1), rgba(79, 107, 245, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
}#pitch-root .placeholder-icon {
    font-size: 64px;
}#pitch-root .placeholder-text {
    font-size: 16px;
    font-weight: 500;
}

/* Hide placeholder when video exists */
#pitch-root /* Hide placeholder when video exists */
.demo-video + .video-placeholder {
    display: none;
}

/* Content Wrapper */
#pitch-root /* Content Wrapper */
.content-wrapper {
    padding: 20px;
}#pitch-root .section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(79, 107, 245, 0.15);
    border: 1px solid rgba(79, 107, 245, 0.3);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--blue-light);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}#pitch-root .content-wrapper h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}#pitch-root .content-wrapper > p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Mini Phone */
#pitch-root /* Mini Phone */
.phone-container {
    display: flex;
    justify-content: center;
}#pitch-root .phone-frame-mini {
    width: 380px;
    height: 700px;
    background: var(--bg-surface);
    border-radius: 40px;
    padding: 8px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
}#pitch-root .phone-screen-mini {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}#pitch-root .dynamic-island-mini {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 24px;
    background: #000;
    border-radius: 16px;
    z-index: 10;
}#pitch-root .chat-header-mini {
    padding: 46px 20px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}#pitch-root .chat-logo-lockup {
    height: 33px;
    width: auto;
    object-fit: contain;
}#pitch-root .verified-mini {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--orange), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}#pitch-root .chat-messages-mini {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Mini Message Styles */
#pitch-root /* Mini Message Styles */
.message-mini {
    max-width: 85%;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}#pitch-root .message-mini.visible {
    opacity: 1;
    transform: translateY(0);
}#pitch-root .message-mini.user {
    align-self: flex-end;
}#pitch-root .message-mini.ai {
    align-self: flex-start;
}#pitch-root .message-mini .bubble {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 13px;
    line-height: 1.4;
}#pitch-root .message-mini.user .bubble {
    background: linear-gradient(135deg, var(--orange), var(--coral));
    color: white;
    border-bottom-right-radius: 4px;
}#pitch-root .message-mini.ai .bubble {
    background: var(--bg-card);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom-left-radius: 4px;
}#pitch-root .message-mini.thinking .bubble {
    background: rgba(79, 107, 245, 0.1);
    border: 1px solid rgba(79, 107, 245, 0.2);
    color: var(--blue-light);
    font-size: 12px;
    padding: 8px 14px;
}

/* Vision Section */
#pitch-root /* Vision Section */
.vision-section {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 100px 40px;
}#pitch-root .vision-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
}#pitch-root .vision-section > p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}#pitch-root .vision-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}#pitch-root .vision-stats .stat {
    text-align: center;
}#pitch-root .vision-stats .stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
}#pitch-root .vision-stats .stat-label {
    font-size: 14px;
    color: var(--text-muted);
}#pitch-root .timeline {
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: 800px;
    margin: 0 auto;
}#pitch-root .timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}#pitch-root .timeline-marker {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 3px solid var(--text-dim);
    transition: all 0.3s ease;
}#pitch-root .timeline-marker.active {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 0 20px rgba(247, 144, 30, 0.5);
}#pitch-root .timeline-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}#pitch-root .timeline-content p {
    font-size: 14px;
    color: var(--text-muted);
}

/* CTA Section */
#pitch-root /* CTA Section */
.cta-section {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 100px 40px;
    background: linear-gradient(180deg, transparent, rgba(247, 144, 30, 0.05));
}#pitch-root .cta-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}#pitch-root .cta-section > p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}#pitch-root .cta-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}#pitch-root .cta-form input {
    flex: 1;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--text-white);
    font-size: 16px;
    font-family: inherit;
    outline: none;
}#pitch-root .cta-form input::placeholder {
    color: var(--text-dim);
}#pitch-root .cta-form input:focus {
    border-color: var(--orange);
}

/* Footer */
#pitch-root /* Footer */
.footer {
    position: relative;
    z-index: 10;
    padding: 60px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}#pitch-root .footer-content {
    max-width: 600px;
    margin: 0 auto;
}#pitch-root .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}#pitch-root .footer-logo img {
    height: 40px;
    width: auto;
}#pitch-root .footer p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}#pitch-root .footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}#pitch-root .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}#pitch-root .footer-links a:hover {
    color: var(--orange);
}#pitch-root .footer-links span {
    color: var(--text-dim);
}

/* Responsive */
@media (max-width: 1024px) {
    #pitch-root .section-container {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-items: center;
    }

    #pitch-root .layout-video-left .video-wrapper,
    #pitch-root .layout-chat-left .video-wrapper {
        order: 1;
    }

    #pitch-root .layout-video-left .content-wrapper,
    #pitch-root .layout-chat-left .content-wrapper {
        order: 2;
    }

    #pitch-root .video-wrapper {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    #pitch-root .content-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0;
    }

    #pitch-root .phone-frame-mini {
        width: 340px;
        height: 620px;
    }

    #pitch-root .hero h1 {
        font-size: 48px;
    }

    #pitch-root .nav-links {
        display: none;
    }

    #pitch-root .vision-stats {
        gap: 40px;
    }
}

@media (max-width: 640px) {#pitch-root .demo-section {
        padding: 32px 20px;
    }#pitch-root .demo-section + .demo-section::before {
        content: '';
        display: block;
        width: 40px;
        height: 3px;
        margin: 0 auto 28px;
        border-radius: 3px;
        background: rgba(255, 255, 255, 0.12);
    }#pitch-root .hero h1 {
        font-size: 36px;
    }#pitch-root .hero-cta {
        flex-direction: column;
        align-items: center;
    }#pitch-root .vision-stats {
        flex-direction: column;
        gap: 32px;
    }#pitch-root .vision-stats .stat-number {
        font-size: 36px;
    }#pitch-root .demo-intro h2,
#pitch-root .b2b-intro h2,
#pitch-root .vision-section h2,
#pitch-root .cta-section h2 {
        font-size: 32px;
    }#pitch-root .video-wrapper {
        width: 90%;
        max-width: 350px;
    }#pitch-root .video-overlay h3 {
        font-size: 20px;
    }#pitch-root .video-overlay p {
        font-size: 13px;
    }#pitch-root .phone-frame-mini {
        width: 300px;
        height: 550px;
    }#pitch-root .footer-links {
        flex-direction: column;
        gap: 8px;
    }#pitch-root .footer-links span {
        display: none;
    }
}
