/* Header V1 - Marketing Header */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

.header-v1 {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: var(--bg-primary);
    border-bottom: 0.975px solid #E2E8F0;
    font-family: 'Poppins', sans-serif;
}

.header-v1__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 12px 0;
}

/* Logo */
.header-v1__logo {
    flex-shrink: 0;
    z-index: 1001;
}

.header-v1__logo svg {
    width: 141px;
    height: 40px;
}

/* Right side: Assets link + CTA */
.header-v1__right {
    display: none;
    align-items: center;
    gap: 24px;
}

.header-v1__nav-link {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding-bottom: 4px;
    position: relative;
    transition: opacity 0.2s ease;
}

.header-v1__nav-link:hover {
    opacity: 0.8;
}

.header-v1__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #EB1260;
    transition: width 0.2s ease;
}

.header-v1__nav-link:hover::after {
    width: 100%;
}

/* Primary CTA Button */
.header-v1__btn-primary {
    display: inline-flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 35px;
    border: none;
    background: radial-gradient(139.49px at 50% 2.46%, #7B1B3D 0%, #B3174F 50%, #EB1260 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-v1__btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(235, 18, 96, 0.35);
}

/* Hamburger - visible on mobile */
.header-v1__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.header-v1__hamburger-line {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform-origin: center;
}

.header-v1__hamburger[aria-expanded="true"] .header-v1__hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.header-v1__hamburger[aria-expanded="true"] .header-v1__hamburger-line:nth-child(2) {
    opacity: 0;
}

.header-v1__hamburger[aria-expanded="true"] .header-v1__hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.header-v1__mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: #0a0b2e;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
}

.header-v1__mobile-menu.is-open {
    right: 0;
}

.header-v1__mobile-content {
    display: flex;
    flex-direction: column;
    padding: 80px 24px 32px;
    gap: 16px;
}

.header-v1__mobile-link {
    display: block;
    padding: 14px 16px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.header-v1__mobile-link:hover {
    background: rgba(255, 255, 255, 0.05);
}

.header-v1__mobile-btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 24px;
    margin-top: 8px;
    border-radius: 35px;
    border: none;
    background: radial-gradient(139.49px at 50% 2.46%, #7B1B3D 0%, #B3174F 50%, #EB1260 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

/* Overlay */
.header-v1__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.header-v1__overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* Tablet+ */
@media (min-width: 768px) {
    .header-v1__right {
        display: flex;
    }

    .header-v1__hamburger {
        display: none;
    }

    .header-v1__mobile-menu {
        display: none;
    }
}
