/* Navbar Showcase Styling - Fixed Top */
:root {
    --showcase-nav-height: 74px;
}

.navbar-showcase {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: var(--z-showcase-navbar, 100);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 24px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border-radius: 0;
}

.navbar-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo {
    position: relative;
    z-index: 2;
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--text-main, #2b2d42);
    letter-spacing: -0.5px;
}

.logo-text__accent {
    color: #00bcc7;
}

.navbar-showcase .sigle {
    height: 36px;
    width: auto;
}

.navbar-showcase__menu {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
}

.navbar-showcase .nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-showcase .nav-links a {
    text-decoration: none;
    color: var(--text-main, #2b2d42);
    font-weight: 600;
    font-size: 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: color 0.2s ease;
    position: relative;
}

.navbar-showcase .nav-links a:hover {
    color: var(--primary, #4cc3bd);
}

.navbar-showcase .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary, #4cc3bd);
    transition: width 0.3s ease;
}

.navbar-showcase .nav-links a:hover::after {
    width: 100%;
}

.navbar-showcase .nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.navbar-showcase .nav-actions .btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.navbar-showcase__toggle {
    display: none;
    margin-left: auto;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: var(--text-main, #2b2d42);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.navbar-showcase__toggle-line {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.navbar-showcase.is-open .navbar-showcase__toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-showcase.is-open .navbar-showcase__toggle-line:nth-child(2) {
    opacity: 0;
}

.navbar-showcase.is-open .navbar-showcase__toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar-showcase.is-story .navbar-showcase__toggle {
    color: rgba(255, 255, 255, 0.92);
}

.showcase-launch-banner {
    position: fixed;
    top: calc(var(--showcase-nav-height) + 10px);
    left: 50%;
    z-index: 2147482999;
    width: min(1240px, calc(100% - 24px));
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    box-sizing: border-box;
    padding: 10px 12px 10px 10px;
    border: 1px solid rgba(247, 201, 72, 0.28);
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(12, 12, 12, 0.98) 0%, rgba(78, 17, 39, 0.98) 54%, rgba(20, 10, 10, 0.98) 100%);
    box-shadow: 0 20px 50px rgba(7, 9, 18, 0.28);
    backdrop-filter: blur(12px);
    color: #fff5cf;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -14px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.showcase-launch-banner.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.showcase-launch-banner.is-dismissed {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -12px);
}

.navbar-showcase.is-open + .showcase-launch-banner {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -12px);
}

.showcase-launch-banner__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f7c948;
    color: #120907;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.showcase-launch-banner__viewport {
    min-width: 0;
    overflow: hidden;
}

.showcase-launch-banner__track {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    animation: showcase-launch-banner-marquee 28s linear infinite;
    will-change: transform;
}

.showcase-launch-banner__viewport:hover .showcase-launch-banner__track,
.showcase-launch-banner__viewport:focus-within .showcase-launch-banner__track {
    animation-play-state: paused;
}

.showcase-launch-banner__message {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
    white-space: nowrap;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.showcase-launch-banner__sep {
    color: #f7c948;
    font-size: 12px;
}

.showcase-launch-banner__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(247, 201, 72, 0.16);
    border: 1px solid rgba(247, 201, 72, 0.22);
    color: #ffd86f;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.showcase-launch-banner__link:hover,
.showcase-launch-banner__link:focus-visible {
    background: rgba(247, 201, 72, 0.24);
    border-color: rgba(247, 201, 72, 0.4);
    color: #fff2be;
}

.showcase-launch-banner__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(247, 201, 72, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffd86f;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.showcase-launch-banner__close:hover,
.showcase-launch-banner__close:focus-visible {
    background: rgba(247, 201, 72, 0.12);
    border-color: rgba(247, 201, 72, 0.36);
    color: #fff2be;
}

@keyframes showcase-launch-banner-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 16px));
    }
}

@media (max-width: 1260px) {
    body.showcase-nav-open {
        overflow: hidden;
    }

    .navbar-showcase {
        padding: 12px 16px;
        gap: 12px;
        border-radius: 0;
    }

    .navbar-showcase__toggle {
        display: inline-flex;
    }

    .navbar-showcase__menu {
        flex: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 18px;
        box-sizing: border-box;
        border-radius: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.22s ease, transform 0.22s ease;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 20px 48px rgba(15, 23, 42, 0.14);
        z-index: 1;
        max-height: calc(100svh - 70px);
        overflow-y: auto;
    }

    .navbar-showcase.is-story .navbar-showcase__menu {
        background: #070a12;
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
    }

    .showcase-launch-banner {
        width: calc(100% - 20px);
        gap: 10px;
        padding: 8px 10px;
        border-radius: 16px;
    }

    .showcase-launch-banner__label {
        min-height: 34px;
        padding: 0 11px;
        font-size: 11px;
    }

    .showcase-launch-banner__message {
        gap: 12px;
        font-size: 13px;
    }

    .showcase-launch-banner__track {
        gap: 24px;
        animation-duration: 24s;
    }

    .showcase-launch-banner__link {
        min-height: 34px;
        padding: 0 12px;
    }

    .showcase-launch-banner__close {
        width: 34px;
        height: 34px;
        font-size: 20px;
    }

    .navbar-showcase.is-open .navbar-showcase__menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .navbar-showcase .nav-links {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        position: static;
        left: auto;
        transform: none;
    }

    .navbar-showcase .nav-links a {
        font-size: 16px;
    }

    .navbar-showcase .nav-actions {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-top: 2px;
    }

    .navbar-showcase .nav-actions .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: min(100%, 340px);
        min-height: 48px;
        padding: 0 18px;
        text-align: center;
        line-height: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .showcase-launch-banner {
        transform: translate(-50%, 0);
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .showcase-launch-banner__viewport {
        overflow-x: auto;
    }

    .showcase-launch-banner__track {
        animation: none;
        transform: none;
    }

    .showcase-launch-banner__message {
        white-space: normal;
        min-width: 100%;
    }

    .showcase-launch-banner__message[aria-hidden="true"] {
        display: none;
    }
}
