/* ========================================
   TOP BAR
   ======================================== */
.topbar {
    background: var(--navy);
    color: var(--text-on-dark-muted);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    padding: 0.5rem 0;
}

.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar__left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topbar__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.topbar__item a {
    color: var(--text-on-dark-muted);
    transition: color 0.2s ease;
}
.topbar__item a:hover { color: var(--white); }

.topbar__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255,255,255,0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    color: var(--cream);
    font-weight: 500;
}

.topbar__badge-dot {
    width: 5px;
    height: 5px;
    background: #4ade80;
    border-radius: 50%;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.nav__logo-icon {
    width: 36px;
    height: 36px;
    background: var(--red);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nav__logo-icon svg { width: 20px; height: 20px; }

.nav__logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1.1;
}

.nav__logo-sub {
    font-family: var(--font-mono);
    font-size: 0.5rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.nav__links li a {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--gray-600);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: color 0.2s ease, background 0.2s ease;
}
.nav__links li a:hover {
    color: var(--navy);
    background: var(--off-white);
}

.nav__cta {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    background: var(--red);
    color: var(--white);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, transform 0.15s ease;
}
.nav__cta:hover {
    background: var(--red-hover);
    color: var(--white);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav__toggle span {
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: 0.3s ease;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .topbar { display: none; }
    .nav__links { display: none; }
    .nav__toggle { display: flex; }
}
