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

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* Animated Gradient Background */
.gradient-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(138, 92, 246, 0.15) 0%, rgba(138, 92, 246, 0) 60%);
    animation: pulse 15s infinite ease-in-out;
    transform: translate(-50%, -50%);
}

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

.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 15s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: float 20s ease-in-out infinite reverse;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 18s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -100px) scale(1.1); }
    66% { transform: translate(-100px, 100px) scale(0.9); }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 16px 40px;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 12px 40px;
    background: rgba(0, 0, 0, 0.8);
}

.header-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-header {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.logo-header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    filter: blur(30px);
    z-index: -1;
}

.logo-header img {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
    transition: all 0.3s ease;
}

.logo-header:hover img {
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 1));
    transform: scale(1.05);
}

.logo-header span {
    font-size: 2em;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.header-cta {
    display: flex;
    gap: 12px;
}

.btn-header {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.95em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-chrome-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-chrome-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-chrome-header:hover::before {
    left: 100%;
}

.btn-chrome-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
}

.btn-firefox-header {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-firefox-header:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-header img {
    width: 22px;
    height: 22px;
}

/* Hero Section */
.hero {
    padding-top: 20px;
    padding-bottom: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    padding-top: 0;
}

.hero-content h1 {
    font-size: 3.8em;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 40%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content .subtitle {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    line-height: 1.6;
    font-weight: 400;
}

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

.btn-primary {
    padding: 20px 40px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.15em;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-size: 1.15em;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px) scale(1.02);
}

.btn img {
    width: 26px;
    height: 26px;
}

.hero-visual {
    position: relative;
    perspective: 1000px;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.hero-visual img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 60px rgba(139, 92, 246, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual:hover img {
    transform: translateY(-10px) rotateX(2deg);
}

/* Stats Bar */
.stats-bar {
    background: rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    padding: 40px 40px;
}

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

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

.stat-number {
    font-size: 3em;
    font-weight: 900;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* How It Works */
.how-it-works {
    background: rgba(139, 92, 246, 0.03);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    padding: 80px 40px;
    position: relative;
}

.how-content {
    max-width: 1600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

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

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: 900;
    margin: 0 auto 24px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

.step h3 {
    font-size: 1.4em;
    margin-bottom: 12px;
    font-weight: 700;
    color: #ffffff;
}

.step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1em;
    line-height: 1.6;
}

/* Demo Section */
.demo-section {
    padding: 80px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.demo-image {
    position: relative;
    perspective: 1000px;
}

.demo-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.demo-image img {
    width: 85%;
    margin: 0 auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 60px rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}

.demo-image:hover img {
    transform: translateY(-10px) rotateX(2deg);
}

.demo-text h3 {
    font-size: 2.4em;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-text p {
    font-size: 1.15em;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.demo-grid:nth-child(even) .demo-image {
    order: 2;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    backdrop-filter: blur(40px);
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    z-index: -1;
}

.final-cta h2 {
    font-size: 3em;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta p {
    font-size: 1.25em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
}

.final-cta .cta-buttons {
    justify-content: center;
}

.btn-white {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: white;
}

.btn-white:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.6);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

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

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.5);
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1em;
}

/* Features Compact Section - Premium Redesign */
.features-compact {
    padding: 100px 40px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.features-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    z-index: -1;
    animation: gradientPulse 10s ease infinite;
}

@keyframes gradientPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.section-header-compact {
    text-align: center;
    margin-bottom: 70px;
}

.section-header-compact h2 {
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.section-header-compact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
    border-radius: 2px;
}

.section-header-compact p {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.feature-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item-compact {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    opacity: 1 !important;
    visibility: visible !important;
}

.feature-item-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.feature-item-compact::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.7s ease;
    z-index: -1;
}

.feature-item-compact:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-item-compact:hover::before {
    opacity: 1;
}

.feature-item-compact:hover::after {
    opacity: 1;
    top: 0;
    left: 0;
}

.feature-item-compact:hover .feature-icon-compact {
    transform: scale(1.2) rotateY(180deg);
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8));
}

.feature-icon-compact {
    font-size: 3.5em;
    margin-bottom: 24px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.4));
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
}

.feature-item-compact h3 {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 14px;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.feature-item-compact p {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-weight: 400;
}

/* Stagger animation effect */
.feature-item-compact:nth-child(1) { animation-delay: 0s; }
.feature-item-compact:nth-child(2) { animation-delay: 0.1s; }
.feature-item-compact:nth-child(3) { animation-delay: 0.2s; }
.feature-item-compact:nth-child(4) { animation-delay: 0.3s; }
.feature-item-compact:nth-child(5) { animation-delay: 0.4s; }
.feature-item-compact:nth-child(6) { animation-delay: 0.5s; }

/* Mobile responsive styles */
@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .prompt-box {
        max-width: calc(100vw - 40px) !important;
        width: calc(100vw - 40px) !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    .prompt-input-container {
        min-height: 80px !important;
        max-height: 80px !important;
        height: 80px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    #prompt-text {
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        line-height: 1.4 !important;
        max-height: 100% !important;
    }

    .cursor {
        display: none !important;
    }

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

    .demo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .demo-grid:nth-child(even) .demo-image {
        order: initial;
    }

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

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

    .feature-grid-compact {
        grid-template-columns: 1fr;
    }

    .hero,
    .demo-section,
    .how-it-works,
    .final-cta,
    .features-compact {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content h2 {
        font-size: 1.5em;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }

    .btn-primary,
    .btn-secondary {
        flex: 1;
        text-align: center;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.9em;
    }

    .btn-primary img,
    .btn-secondary img {
        width: 22px;
        height: 22px;
    }

    .hero-arrow {
        display: none;
    }

    .section-header-compact h2 {
        font-size: 2em;
    }

    .section-header-compact p {
        font-size: 1em;
    }

    .feature-icon-compact {
        font-size: 2.5em;
    }

    .feature-item-compact h3 {
        font-size: 1.2em;
    }

    .feature-item-compact p {
        font-size: 0.9em;
    }

    .feature-item-compact {
        padding: 30px 20px;
    }

    .features-compact {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .hero-content h2 {
        font-size: 1.1em;
        line-height: 1.3;
    }

    .hero-content h1 {
        font-size: 1.8em;
        line-height: 1.1;
    }

    .hero-content .subtitle {
        font-size: 0.85em;
        line-height: 1.5;
    }

    .hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-content {
        padding: 0;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 14px;
        font-size: 0.8em;
    }

    .btn-primary img,
    .btn-secondary img {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 400px) {
    .hero-content h2 {
        font-size: 0.95em;
    }

    .hero-content h1 {
        font-size: 1.5em;
    }

    .hero-content .subtitle {
        font-size: 0.75em;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 10px;
        font-size: 0.75em;
    }
}

/* Top Logo */
.top-logo {
    text-align: center;
    padding: 40px 20px 10px 20px;
}

.top-logo img {
    width: 100px;
    height: 100px;
}

/* Prompt Box Animation Styles (from example) */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #8A5CF6;
}

.hero-content h1 .highlight {
    background: linear-gradient(90deg, #8A5CF6, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prompt-box {
    width: 100%;
    max-width: 650px;
    background: #18161D;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.prompt-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #A0A0A0;
    margin-bottom: 0;
}

.prompt-input-container {
    background: #0D0C0F;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    font-size: 1.15rem;
    color: #EAEAEA;
    min-height: 80px;
    line-height: 1.6;
}

.cursor {
    display: none;
}

.create-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(90deg, #FF8A00, #E52E71);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.create-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 100, 100, 0.25);
}

.create-btn:active {
    transform: translateY(0);
}

.create-btn svg {
    color: white;
}

.hero-arrow {
    position: absolute;
    bottom: -80px;
    right: -20px;
    width: 120px;
    z-index: 1;
    opacity: 0.7;
    transform: rotate(5deg);
}