.feature-container {
    width: 80%;
}

.traction {
    width: 90%;
    margin: auto;
}

/* Announcement top banner */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background-color: #fff4e6; /* light orange */
    color: #7a4b00;
    padding: 8px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
html.dark .top-banner {
    background-color: #4a2c2a; /* deep warm tone for dark mode */
    color: #ffe0b2;
}
.top-banner .close-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 4px;
}

/* Desktop brand styles */

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: contain;
    background-color: #4b3471;
}

.brand-text {
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: #5C407F;
}

html.dark .brand-text {
    color: white;
}

/* Sticky persona tab bar (desktop) */
@media (min-width: 1024px) {
    .persona-tabbar {
        position: sticky;
        top: 5rem;
        /* adjust to sit clearly below fixed header */
        z-index: 30;
        background-color: #ffffff;
    }

    /* Dark mode fallback background if Tailwind dark class not applied */
    html.dark .persona-tabbar {
        background-color: #0F1222;
        /* matches background-6 tone */
    }
}

/* Ensure the sticky ancestor doesn't clip the sticky element */
@media (min-width: 1024px) {
    .persona-section {
        overflow: visible;
    }
}

/* Mobile sticky persona tabs */
@media (max-width: 1023.98px) {
    .persona-tabmobile {
        position: sticky;
        top: 4.4rem;
        /* below the fixed header on mobile */
        z-index: 30;
        background-color: #ffffff;
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    html.dark .persona-tabmobile {
        background-color: #0F1222;
        /* matches dark background */
    }

    /* Make sure the section doesn't clip sticky on mobile as well */
    .persona-section {
        overflow: visible;
    }
}

.startupworldcup-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    /* background-color: #4b3471; */
    border-radius: 8px;
    padding: 4px;
}

.traction-item{
    justify-content: space-between;
    gap: 1rem;
}

.traction-text {
    background-color:  #4b3471;
    color: #fff !important;
    margin-top: 0.8rem;
    min-width: 150px;
    font-weight: 500;
    font-size: 20px !important;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}