.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 .5rem;
    font-family: 'Inter', sans-serif;
    color: var(--color-text-primary, white);
}

.hero-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 8rem;
    gap: 4rem;
    min-height: 10vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-left: -2rem;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    color: var(--color-text-primary, white);
}

.hero-description {
    font-size: 1.7rem;
    margin-bottom: 2rem;
    margin-top: -0.5rem;
    font-weight: 700;
    color: var(--color-text-secondary, #8b8987);
}

.get-started-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 4rem;
    font-size: 1.1rem;
    text-decoration: none;
    background-color: var(--color-accent, #8b47eb);
    color: white;
    border-radius: 0.8rem;
    font-weight: 700;
    transition: all 0.2s ease;
    box-shadow: 0 4px 0 0 rgba(0,0,0,0.2);
    width: fit-content;
    margin: 0 auto;
}

.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 rgba(0,0,0,0.2);
    filter: brightness(1.1);
}

.get-started-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 0 rgba(0,0,0,0.2);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-board {
    width: 200%;
    max-width: 570px;
    aspect-ratio: 1;
    background-color: var(--bg-secondary, #262522);
    border-radius: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8rem;
    color: var(--color-text-secondary, #8b8987);
    box-shadow: none;
}

.features-section {
    text-align: center;
    padding: 1.2rem 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    margin-bottom: -5rem;
}

.features-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--color-text-secondary, #8b8987);
}

.free-text {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: -0.5rem;
    color: var(--color-text-primary, white);
}

.cycling-text-container {
    font-size: 5.5rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cycling-text {
    color: var(--color-accent, #8b47eb);
    transition: opacity 0.5s ease-in-out;
    text-align: center;
}

/* Info Sections */
.info-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.4rem 0;
    gap: 6rem;
    min-height: 90vh;
}

.info-section.reverse {
    flex-direction: row-reverse;
}

.info-content {
    flex: 1;
    max-width: 500px;
}

.info-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary, white);
}

.info-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--color-text-secondary, #8b8987);
}

.info-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.info-image .placeholder-content {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1.2;
    background-color: var(--bg-secondary, #262522);
    border-radius: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 6rem;
    color: var(--color-text-secondary, #8b8987);
}

/* CTA Section */
.cta-section {
    padding: 3rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--color-text-primary, white);
}

/* Force sidebar bottom buttons to show on landing page */
.sidebar-bottom {
    display: flex !important;
}

@media (max-width: 900px) {
    .info-section, .info-section.reverse {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 2.4rem 0;
    }
    
    .hero-section {
        flex-direction: column-reverse;
        padding: 1.2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .free-text {
        font-size: 4rem;
    }
    
    .cycling-text-container {
        font-size: 2.5rem;
    }

    .info-content h2 {
        font-size: 2.5rem;
    }

    .info-content p {
        font-size: 1.2rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }
}

