/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    min-height: 100vh;
    background-color: #000;
}

body {
    font-family: Georgia, Times, 'Times New Roman', serif;
    color: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-x: hidden;
    position: relative;
}

/* Announcement Banner */
.announcement-banner {
    display: inline-block;
    background-color: #1a1a1a;
    color: #fff;
    padding: 0.5rem 1.25rem;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-banner p {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header and Navigation */
.header {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(128, 128, 128, 0.3); /* Skinny gray divider line */
}

.header-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: #fff;
}

.logo {
    font-family: Georgia, Times, 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    cursor: pointer;
}

.logo:hover {
    opacity: 0.9;
}

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

.nav-button {
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    position: relative;
    display: inline-block;
    z-index: 1;
}

@keyframes pulse-orb {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
        box-shadow: 0 0 15px 5px rgba(150, 200, 255, 0.25);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.85;
        box-shadow: 0 0 20px 8px rgba(150, 200, 255, 0.3);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
        box-shadow: 0 0 15px 5px rgba(150, 200, 255, 0.25);
    }
}

@keyframes pulse-orb-signup {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
        box-shadow: 0 0 18px 6px rgba(180, 220, 255, 0.3);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.9;
        box-shadow: 0 0 22px 9px rgba(180, 220, 255, 0.35);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
        box-shadow: 0 0 18px 6px rgba(180, 220, 255, 0.3);
    }
}

@keyframes hover-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
        box-shadow: 0 0 15px 4px rgba(255, 255, 255, 0.15);
    }
    25% {
        transform: translate(-49%, -51%) scale(1.04);
        opacity: 0.7;
        box-shadow: 0 0 18px 5px rgba(210, 230, 255, 0.18);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 0.8;
        box-shadow: 0 0 20px 6px rgba(220, 240, 255, 0.2);
    }
    75% {
        transform: translate(-51%, -49%) scale(1.04);
        opacity: 0.7;
        box-shadow: 0 0 18px 5px rgba(210, 230, 255, 0.18);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
        box-shadow: 0 0 15px 4px rgba(255, 255, 255, 0.15);
    }
}

.nav-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
    pointer-events: none;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.05);
    animation: none;
}

.nav-button:hover::before {
    opacity: 0.7;
    width: 110%;
    height: 110%;
    box-shadow: 0 0 15px 4px rgba(255, 255, 255, 0.15);
    background: radial-gradient(circle, rgba(200, 225, 255, 0.2) 0%, rgba(200, 225, 255, 0) 70%);
    animation: hover-pulse 2s infinite ease-in-out;
}

.nav-button:hover {
    color: #fff;
}

/* Navigation auth buttons - smaller size for header */
.nav-auth-btn {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.85rem !important;
    border-radius: 6px !important;
    min-width: auto !important;
    width: auto !important;
}

.nav-auth-btn.signin {
    background-color: rgba(32, 32, 32, 0.95);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-auth-btn.signup {
    background-color: #fff;
    color: #000;
    font-weight: 500;
}

.nav-auth-btn:hover {
    transform: translateY(-1px);
}

.nav-auth-btn.signin:hover {
    background-color: rgba(48, 48, 48, 0.95);
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-auth-btn.signup:hover {
    background-color: rgba(255, 255, 255, 0.9);
}



.signup-button {
    background-color: transparent;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1.5px solid #fff;
    transition: all 0.2s ease;
    position: relative;
}

.signup-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    background: radial-gradient(circle, rgba(220, 240, 255, 0.25) 0%, rgba(220, 240, 255, 0) 70%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
    pointer-events: none;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.05);
    animation: none;
}

.signup-button:hover::before {
    opacity: 0.8;
    width: 110%;
    height: 110%;
    box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.2);
    background: radial-gradient(circle, rgba(220, 240, 255, 0.25) 0%, rgba(220, 240, 255, 0) 70%);
    animation: hover-pulse 2s infinite ease-in-out;
}

.signup-button:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 14px; /* Reduced height for 2 lines */
    cursor: pointer;
    z-index: 100;
}

.hamburger-menu span {
    display: block;
    height: 2px; /* Slightly thinner lines */
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu span:nth-child(2) {
    display: none; /* Hide middle line */
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg); /* Adjusted translation for 2 lines */
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg); /* Adjusted translation for 2 lines */
}

/* Hero Section */
.hero {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

h1 {
    font-size: 5.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

/* Coming Soon Buttons */
.coming-soon-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.coming-soon-btn {
    background-color: #fff;
    color: #000;
    border: 1px solid #333;
    padding: 0.75rem 2rem;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.coming-soon-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.hero-actions {
    margin-bottom: 2rem;
}

.demo-button {
    background-color: #fff;
    color: #000;
    padding: 0.75rem 2rem;
    border: 1px solid #333;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.demo-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.waitlist-card {
    background: #000;
    border: 1px solid #333;
    padding: 2rem;
    text-align: center;
    margin: 2rem auto;
    max-width: 500px;
}

.waitlist-card h2 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #fff;
}

.waitlist-card p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.waitlist-card-button {
    background: #fff;
    color: #000;
    padding: 0.75rem 2rem;
    border: 1px solid #333;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.waitlist-card-button:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #fff;
    color: #000;
    padding: 0.8rem 1.7rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    justify-content: center;
    background-color: #000;
    color: #fff;
    border-top: 1px solid rgba(128, 128, 128, 0.3); /* Skinny gray divider line */
    margin-top: -1px;
    position: relative;
    z-index: 0;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Value Proposition Section */
.value-proposition {
    padding: 4rem 2rem;
    background-color: #000;
    color: #fff;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Comparison Graph */
.comparison-graph {
    margin: 4rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.graph-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 2rem;
}

.graph-item {
    text-align: center;
}

.graph-bar {
    width: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px 8px 0 0;
    transition: height 0.5s ease;
    position: relative;
}

.graph-bar.highlight {
    background: #fff;
}

.graph-bar span {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.8);
}

.graph-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Detailed Explanation */
.detailed-explanation {
    margin-top: 4rem;
}

.explanation-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.explanation-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.explanation-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Scenario Comparison */
.scenario-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 4rem 0;
}

.scenario {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
}

.scenario h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-align: center;
}

.scenario-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.cost-indicator {
    margin-top: 2rem;
    height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.cost-bar {
    width: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px 8px 0 0;
    transition: height 1s ease-in-out;
    position: relative;
}

.cost-bar.highlight {
    background: #fff;
}

.cost-bar span {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.8);
}

.cost-bar.animate {
    height: var(--target-height);
}

/* Animation Classes */
.section-content > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-content > *.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay animations for each section */
.section-content > *:nth-child(1) { transition-delay: 0.1s; }
.section-content > *:nth-child(2) { transition-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 4.5rem;
    }
    
    .hero {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3.8rem;
    }
    
    .coming-soon-buttons {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .coming-soon-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: #000;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        gap: 1.5rem;
        transition: right 0.3s ease;
        z-index: 90;
        border-left: 1px solid rgba(128, 128, 128, 0.3);
    }
    
    .nav.active {
        right: 0;
    }
    
    .header-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 80;
        transition: opacity 0.3s ease;
    }
    
    .header-overlay.active {
        display: block;
    }
    
    .header-content {
        padding: 0 1.5rem;
        position: relative;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .footer-content {
        padding: 0 1.5rem;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .footer-links {
        gap: 1.25rem;
    }
    
    .graph-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .graph-bar {
        width: 80px;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .section-content h2 {
        font-size: 2rem;
    }
    
    .scenario-comparison {
        grid-template-columns: 1fr;
    }
    
    .scenario h3 {
        font-size: 1.5rem;
    }
    
    .timeline-content h4 {
        font-size: 1.1rem;
    }

    .category-buttons {
        flex-wrap: wrap;
    }
    
    .example-section {
        padding: 3rem 1.5rem;
    }
    
    .action-button {
        padding: 0.6rem 1rem;
    }

    .input-field {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }

    .input-field::placeholder {
        font-size: 1rem;
    }

    .input-field-container {
        min-height: 180px;
    }

    .mobile-banner {
        display: block;
    }

    .hero {
        padding-top: calc(2rem + 44px); /* Add padding to account for banner height */
    }

    .header {
        margin-top: 44px; /* Add margin to account for banner height */
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1.25rem 0;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .nav-button {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    .coming-soon-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .coming-soon-btn {
        width: 100%;
        max-width: 200px;
        padding: 0.7rem 1rem;
    }
    
    .hero {
        padding: 1.5rem 1rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.4rem;
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 1.25rem 0;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
    
    .nav {
        width: 100%;
        padding-top: 70px;
    }
    
    .footer-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .input-actions {
        flex-direction: row;
        align-items: center;
    }
    
    .left-actions {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }
    
    .submit-button {
        display: none;
    }

    .input-field {
        padding-right: 16px; /* Add some right padding since we removed the button */
    }

    .input-field::placeholder {
        font-size: 1rem;
    }

    .input-field-container {
        min-height: 160px;
    }

    .input-actions {
        width: 100%;
        padding: 0.5rem 0 0 0;
    }

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

    .input-field {
        padding: 0.5rem 1.75rem;
        font-size: 0.95rem;
    }

    .input-field::placeholder {
        font-size: 0.95rem;
    }

    .submit-button {
        width: 42px;
        height: 42px;
    }

    .modal {
        padding: 2rem;
        width: 95%;
    }
    
    .modal h2 {
        font-size: 1.5rem;
    }
    
    .modal p {
        font-size: 0.95rem;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .modal-button {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .nav-button {
        font-size: 0.8rem;
        padding: 0.4rem 0.7rem;
    }
    
    .footer-links {
        gap: 0.75rem;
    }
}

.input-container {
    background-color: rgba(32, 32, 32, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: none;
    display: block;
    transition: all 0.2s ease;
}

.input-container:hover {
    background-color: rgba(40, 40, 40, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
}

.input-container label {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #888;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Centered Content Styles */
.centered-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
}

.centered-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.centered-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: #51cf66;
    color: #000;
    border-color: #51cf66;
}

.cta-button.primary:hover {
    background: #45b85a;
    border-color: #45b85a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(81, 207, 102, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.cta-button.secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Input Tabs Styles */
.input-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.tab {
    position: relative;
    background-color: rgba(32, 32, 32, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    user-select: none;
}

.tab:hover {
    background-color: rgba(48, 48, 48, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.tab.active {
    background-color: rgba(64, 64, 64, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.tab-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(24, 24, 24, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tab.active .tab-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dropdown-item:active {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Mobile responsive adjustments for centered content */
@media (max-width: 768px) {
    .centered-content {
        padding: 1.5rem 1rem;
    }
    
    .centered-content h2 {
        font-size: 2rem;
    }
    
    .centered-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile responsive adjustments for tabs */
@media (max-width: 768px) {
    .input-tabs {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .tab {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .tab-dropdown {
        min-width: 180px;
        left: -20px;
    }
}

@media (max-width: 480px) {
    .input-tabs {
        gap: 4px;
        margin-bottom: 10px;
    }
    
    .tab {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .tab-dropdown {
        min-width: 160px;
        left: -30px;
    }
}

.input-field-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-field-container {
    width: 100%;
    min-height: 120px;
    background-color: rgba(32, 32, 32, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    text-align: left;
    position: relative;
}

.input-field {
    width: 100%;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 20px;
    line-height: 1.5;
    outline: none;
    min-height: 80px;
    caret-color: #FFFFFF;
    text-align: left;
    position: relative;
    z-index: 1;
    padding: 0;
}

.input-field[data-placeholder]:empty:before {
    content: attr(data-placeholder);
    color: rgba(255, 255, 255, 0.8);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    pointer-events: none;
}

.input-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    gap: 8px;
    flex-wrap: wrap;
}

.left-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    flex: 1;
    min-width: 0;
}

.action-button {
    display: none;
}

.submit-button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(32, 32, 32, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.submit-button:hover {
    background-color: rgba(48, 48, 48, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.submit-button span {
    font-size: 18px;
    line-height: 1;
    transform: translateY(-1px);
}

/* Remove file preview styles */
.file-preview {
    display: none;
}

.file-preview-item {
    display: none;
}

.remove-file {
    display: none;
}

.bar.upwork {
    background-color: #28a745; /* Green color for Upwork */
}

.bar span {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 0.9rem;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.platform:hover .bar span {
    opacity: 1;
}

/* Example Section Styles */
.example-section {
    padding: 4rem 2rem;
    background-color: #000;
    color: #fff;
    width: 100%;
}

.example-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.example-input {
    margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .example-section {
        padding: 3rem 1.5rem;
    }
    
    .action-button {
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 480px) {
    .input-actions {
        flex-direction: column;
    }
    
    .action-button {
        width: 100%;
        justify-content: center;
    }

    .input-container {
        padding: 1.25rem;
    }

    .input-container label {
        font-size: 1.1rem;
    }

    .input-field {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background-color: rgb(24, 24, 24);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 90%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.modal-content {
    padding: 40px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

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

.modal h2 {
    color: #fff;
    font-family: Georgia, Times, 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.modal p {
    color: rgba(255, 255, 255, 0.6);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 32px;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.modal-button.signin {
    background-color: rgba(32, 32, 32, 0.95);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-button.signup {
    background-color: #fff;
    color: #000;
    font-weight: 500;
}

.modal-button:hover {
    transform: translateY(-1px);
}

.modal-button.signin:hover {
    background-color: rgba(48, 48, 48, 0.95);
    border-color: rgba(255, 255, 255, 0.2);
}

.modal-button.signup:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.action-button span:first-child {
    font-size: 1.1rem;
    line-height: 1;
    margin-top: -1px;
}

/* Action button spans */
.action-button span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
}

.input-field-container:before {
    content: attr(data-before);
    position: absolute;
    top: 24px;
    left: 24px;
    color: #ffffff;
    pointer-events: none;
    white-space: pre-wrap;
    transition: opacity 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.input-field[data-placeholder]:empty:before {
    content: attr(data-placeholder);
    color: rgba(255, 255, 255, 0.8);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    pointer-events: none;
}

.input-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    gap: 8px;
    flex-wrap: wrap;
}

.left-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    flex: 1;
    min-width: 0;
}

.action-button {
    display: none;
}

.submit-button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(32, 32, 32, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.submit-button:hover {
    background-color: rgba(48, 48, 48, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.submit-button span {
    font-size: 18px;
    line-height: 1;
    transform: translateY(-1px);
}

@keyframes blink {
    0%, 100% { border-right-color: transparent; }
    50% { border-right-color: rgba(255, 255, 255, 0.8); }
}

/* Typing Animation Styles */
.typing-animation {
    transition: all 0.5s ease;
}

.typing-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.typing-dots {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    animation: typingDots 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0s;
}

.typing-indicator p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

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

@keyframes typingDots {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.file-preview {
    display: none;
}

.file-preview-item {
    display: none;
}

.file-preview-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
}

.file-actions {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.change-file {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    font-size: 12px;
    text-decoration: underline;
}

.change-file:hover {
    color: rgba(255, 255, 255, 0.8);
}

.remove-file {
    display: none;
}

/* Scrollbar styling for file preview */
.file-preview::-webkit-scrollbar {
    height: 4px;
}

.file-preview::-webkit-scrollbar-track {
    background: rgba(32, 32, 32, 0.5);
    border-radius: 2px;
}

.file-preview::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.file-preview::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.mobile-banner {
    display: none;
    width: 100%;
    background-color: rgba(32, 32, 32, 0.95);
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding: 12px 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 85;
    backdrop-filter: blur(8px);
} 