:root {
    --site-header-ink: #15131b;
    --site-header-muted: #6d6878;
    --site-header-accent: #754ffe;
    --site-header-border: #e9e6ef;
    --site-header-surface: #fff;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.site-header {
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid var(--site-header-border);
    background: var(--site-header-surface);
}

.site-header__desktop { display: none; }
.site-header__mobile { display: block; }
.mobile-nav__bar { display: flex; min-height: 68px; align-items: center; justify-content: space-between; gap: 16px; }
.mobile-nav__brand img { display: block; width: auto; max-width: 155px; max-height: 42px; }
.mobile-nav__actions { display: flex; align-items: center; gap: 6px; }
.mobile-nav__account { padding: 12px 8px; color: var(--site-header-ink); font-size: 14px; font-weight: 700; text-decoration: none; }
.mobile-nav__toggle,
.mobile-nav__panel-header button { display: inline-grid; width: 44px; height: 44px; padding: 0; place-items: center; border: 0; border-radius: 12px; background: #f4f1fb; color: var(--site-header-ink); font-size: 20px; }
.mobile-nav__panel { position: fixed; z-index: 1002; inset: 0 0 0 auto; width: min(90vw, 390px); padding: 20px; overflow-y: auto; background: #fff; box-shadow: -20px 0 60px rgba(20, 15, 35, .18); }
.mobile-nav__panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; color: var(--site-header-ink); font-size: 20px; }
.mobile-nav__backdrop { position: fixed; z-index: 1001; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(12, 10, 18, .52); }
.mobile-menu-open { overflow: hidden; }
.mobile-nav__search { position: relative; margin-bottom: 20px; }
.mobile-nav__search input { width: 100%; height: 48px; padding: 0 48px 0 16px; border: 1px solid var(--site-header-border); border-radius: 12px; background: #faf9fc; color: var(--site-header-ink); }
.mobile-nav__search button { position: absolute; top: 2px; right: 2px; width: 44px; height: 44px; border: 0; background: transparent; color: var(--site-header-ink); }
.mobile-nav__links,
.mobile-nav__links ul { padding: 0; margin: 0; list-style: none; }
.mobile-nav__links > li { border-bottom: 1px solid var(--site-header-border); }
.mobile-nav__links a,
.mobile-nav__links button { display: flex; width: 100%; min-height: 52px; align-items: center; justify-content: space-between; padding: 12px 2px; border: 0; background: transparent; color: var(--site-header-ink); font-size: 16px; font-weight: 700; text-align: left; text-decoration: none; }
.mobile-nav__links button i { transition: transform .2s ease; }
.mobile-nav__links button[aria-expanded="true"] i { transform: rotate(180deg); }
.mobile-nav__links ul { padding: 0 0 12px 14px; }
.mobile-nav__links ul a { min-height: 44px; color: var(--site-header-muted); font-size: 14px; font-weight: 600; }
.mobile-nav__links .mobile-nav__all { color: var(--site-header-accent); }
.mobile-nav__links a span { display: inline-grid; min-width: 24px; height: 24px; padding: 0 6px; place-items: center; border-radius: 20px; background: #eee9ff; color: var(--site-header-accent); font-size: 12px; }
.mobile-nav__cta { display: flex; min-height: 48px; align-items: center; justify-content: center; margin-top: 24px; border-radius: 12px; background: var(--site-header-accent); color: #fff !important; font-weight: 800; text-decoration: none; }
.site-header a:focus-visible,
.site-header button:focus-visible,
.site-header input:focus-visible { outline: 3px solid rgba(117, 79, 254, .32); outline-offset: 3px; }

@media (min-width: 992px) {
    .site-header__desktop { display: block; }
    .site-header__mobile { display: none; }
    .site-nav__inner { display: flex; min-height: 82px; align-items: center; gap: clamp(22px, 3vw, 44px); }
    .site-nav__brand { flex: 0 0 auto; }
    .site-nav__brand img { display: block; width: auto; max-width: 180px; max-height: 48px; }
    .site-nav__links { display: flex; align-items: center; gap: 4px; padding: 0; margin: 0; list-style: none; }
    .site-nav__item { position: relative; }
    .site-nav__link { display: inline-flex; min-height: 44px; align-items: center; gap: 7px; padding: 10px 12px; border: 0; background: transparent; color: var(--site-header-ink); font-size: 14px; font-weight: 700; text-decoration: none; white-space: nowrap; }
    .site-nav__link:hover,
    .site-nav__link:focus-visible { color: var(--site-header-accent); }
    .site-nav__link i { font-size: 10px; transition: transform .2s ease; }
    .site-nav__link[aria-expanded="true"] i { transform: rotate(180deg); }
    .site-nav__dropdown { position: absolute; top: calc(100% + 8px); left: 0; display: none; width: 310px; padding: 20px; border: 1px solid var(--site-header-border); border-radius: 16px; background: #fff; box-shadow: 0 22px 55px rgba(21, 19, 27, .13); }
    .site-nav__link[aria-expanded="true"] + .site-nav__dropdown { display: block; }
    .site-nav__dropdown-label { margin: 0 0 10px; color: var(--site-header-muted); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
    .site-nav__dropdown ul { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 12px; max-height: 280px; padding: 0; margin: 0 0 12px; overflow-y: auto; list-style: none; }
    .site-nav__dropdown li a { display: flex; min-height: 40px; align-items: center; color: var(--site-header-ink); font-size: 14px; font-weight: 650; text-decoration: none; }
    .site-nav__dropdown li a:hover { color: var(--site-header-accent); }
    .site-nav__dropdown-all { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--site-header-border); color: var(--site-header-accent); font-size: 14px; font-weight: 800; text-decoration: none; }
    .site-nav__actions { display: flex; min-width: 0; align-items: center; gap: 8px; margin-left: auto; }
    .site-nav__search { position: relative; width: clamp(150px, 15vw, 230px); }
    .site-nav__search input { width: 100%; height: 42px; padding: 0 42px 0 14px; border: 1px solid var(--site-header-border); border-radius: 12px; background: #faf9fc; font-size: 13px; }
    .site-nav__search button { position: absolute; top: 0; right: 0; width: 42px; height: 42px; border: 0; background: transparent; color: var(--site-header-ink); }
    .site-nav__icon-action { position: relative; display: inline-grid; width: 44px; height: 44px; place-items: center; border-radius: 12px; color: var(--site-header-ink); text-decoration: none; }
    .site-nav__icon-action span { position: absolute; top: 1px; right: 0; display: grid; min-width: 18px; height: 18px; padding: 0 4px; place-items: center; border-radius: 20px; background: var(--site-header-accent); color: #fff; font-size: 10px; font-weight: 800; }
    .site-nav__login,
    .site-nav__account { padding: 11px 10px; border: 0; background: transparent; color: var(--site-header-ink); font-size: 14px; font-weight: 750; text-decoration: none; white-space: nowrap; }
    .site-nav__account { display: inline-flex; align-items: center; gap: 7px; }
    .site-nav__account i { font-size: 10px; transition: transform .2s ease; }
    .site-nav__account[aria-expanded="true"] i { transform: rotate(180deg); }
    .site-nav__user-menu { position: relative; }
    .site-nav__account-dropdown { position: absolute; top: calc(100% + 10px); right: 0; display: none; width: 210px; padding: 10px; border: 1px solid var(--site-header-border); border-radius: 14px; background: #fff; box-shadow: 0 22px 55px rgba(21, 19, 27, .13); }
    .site-nav__account[aria-expanded="true"] + .site-nav__account-dropdown { display: block; }
    .site-nav__account-dropdown a { display: flex; min-height: 40px; align-items: center; padding: 8px 10px; border-radius: 8px; color: var(--site-header-ink); font-size: 14px; font-weight: 650; text-decoration: none; }
    .site-nav__account-dropdown a:hover { background: #f5f2fc; color: var(--site-header-accent); }
    .site-nav__account-dropdown .site-nav__logout { margin-top: 6px; border-top: 1px solid var(--site-header-border); border-radius: 0; color: #9e2a2b; }
    .site-nav__cta { display: inline-flex; min-height: 44px; align-items: center; padding: 0 18px; border-radius: 12px; background: var(--site-header-accent); color: #fff !important; font-size: 14px; font-weight: 800; text-decoration: none; white-space: nowrap; }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .site-nav__inner { gap: 12px; }
    .site-nav__brand img { max-width: 145px; }
    .site-nav__link { padding-inline: 7px; }
    .site-nav__search { width: 145px; }
    .site-nav__cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .site-header *, .site-header *::before, .site-header *::after { scroll-behavior: auto !important; transition: none !important; }
}
