:root {
    --font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --color-bg: #f9fafb;
    --color-surface: #ffffff;
    --color-muted: #6b7280;
    --color-text: #0f172a;
    --color-primary: #10b981;
    --color-primary-dark: #059669;
    --color-border: #e5e7eb;
    --shadow-soft: 0 15px 40px rgba(15, 23, 42, 0.08);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --mobile-drawer-width: min(72vw, 340px);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-family);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

.top-header {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
}

.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.75rem;
    padding: 0.85rem 4vw;
    max-width: 1320px;
    margin: 0 auto;
}

.top-logo img {
    height: 62px;
    width: auto;
    object-fit: contain;
}

.top-nav__links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.9rem;
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1f2937;
}

.top-nav__links a {
    color: inherit;
    white-space: nowrap;
}

.top-nav__links a[aria-current="page"] {
    color: #0f172a;
}

.top-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #ff7a00;
    border: 1px solid #111827;
    border-radius: 4px;
    padding: 0.65rem 1.25rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.top-nav__cta:hover {
    background: #f26f00;
}

.top-nav__mobile {
    display: none;
    align-items: center;
    gap: 1.25rem;
    margin-left: auto;
}

.mobile-action {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: #334155;
    font-weight: 700;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
}

.mobile-action__icon {
    width: 22px;
    height: 22px;
    color: #6b7280;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none;
    background: transparent;
}

.mobile-menu[data-open="true"] {
    display: block;
}

.mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.14);
    outline: none;
}

.mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 4vw;
}

.mobile-menu__logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.mobile-menu__close {
    appearance: none;
    border: none;
    background: transparent;
    font-size: 1.9rem;
    line-height: 1;
    padding: 0.2rem 0.25rem;
    color: #111827;
    cursor: pointer;
}

.mobile-menu__close:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.7);
    outline-offset: 4px;
    border-radius: 10px;
}

.mobile-menu__nav {
    padding: 0.75rem 4vw 1.25rem;
    display: grid;
    gap: 1.15rem;
}

.mobile-menu__nav a {
    color: #64748b;
    font-weight: 600;
    font-size: 1rem;
}

.mobile-menu__nav a:hover,
.mobile-menu__nav a:focus-visible {
    color: #334155;
}

.mobile-menu--drawer .mobile-menu__overlay {
    background: transparent;
}

.mobile-menu--drawer .mobile-menu__panel {
    right: auto;
    width: var(--mobile-drawer-width);
    height: 100%;
    border-bottom: 0;
    box-shadow: 18px 0 30px rgba(15, 23, 42, 0.18);
    background: #7e8792;
    transform: translateX(-100%);
    transition: transform 0.18s ease;
}

.mobile-menu--drawer[data-open="true"] .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu--drawer .mobile-menu__nav {
    padding: 0;
    gap: 0;
}

.mobile-menu--drawer .mobile-menu__nav a {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.9rem 1.15rem;
}

.mobile-menu--drawer .mobile-menu__nav a:hover,
.mobile-menu--drawer .mobile-menu__nav a:focus-visible {
    color: #fff;
    background: rgba(0, 0, 0, 0.08);
}

.mobile-menu__item--top {
    background: rgba(0, 0, 0, 0.18);
}

.mobile-menu__cta {
    background: #ff7a00;
    color: #fff;
    text-align: center;
    font-weight: 800;
}

.mobile-menu--drawer .mobile-menu__cta:hover,
.mobile-menu--drawer .mobile-menu__cta:focus-visible {
    background: #f26f00;
}

.mobile-action:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.7);
    outline-offset: 4px;
    border-radius: 10px;
}

.auth-main {
    min-height: 62vh;
    padding: 2.25rem 4vw 3rem;
    display: grid;
    place-items: center;
    background: #f5f6f8;
    border-bottom: 1px solid var(--color-border);
}

.auth-card {
    width: min(460px, 92vw);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.08);
    padding: 1.75rem 2rem;
}

.auth-title {
    margin: 0 0 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.auth-alert {
    border-radius: 8px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 1.1rem;
}

.auth-alert--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.auth-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.auth-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.35rem;
}

.auth-field input {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    padding: 0.65rem 0.9rem;
    font-size: 1rem;
    background: #fff;
    outline: none;
}

.auth-field input:focus {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.password-field {
    position: relative;
}

.password-field input {
    padding-right: 2.75rem;
}

.password-toggle {
    position: absolute;
    right: 0.65rem;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #64748b;
}

.password-toggle__icon {
    width: 20px;
    height: 20px;
    color: currentColor;
}

.password-toggle .icon-eye-off {
    display: none;
}

.password-toggle[data-showing="true"] .icon-eye {
    display: none;
}

.password-toggle[data-showing="true"] .icon-eye-off {
    display: block;
}

.password-toggle:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.7);
    outline-offset: 2px;
    border-radius: 8px;
}

.auth-link {
    color: #2563eb;
    text-decoration: underline;
    font-weight: 600;
    font-size: 0.95rem;
}

.auth-link--forgot {
    margin-top: -0.25rem;
    align-self: flex-start;
}

.auth-submit {
    margin-top: 0.75rem;
    width: 100%;
    border: 0;
    border-radius: 6px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    background: #66b60a;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.auth-submit:hover {
    background: #5cab08;
}

.auth-link--create {
    text-align: center;
    margin-top: 0.35rem;
}

.auth-divider {
    border: 0;
    border-top: 1px solid var(--color-border);
    margin: 1.55rem 0 1rem;
}

.auth-help {
    margin: 0;
    color: #334155;
    font-size: 0.95rem;
}

.light-footer {
    background: #fff;
    padding: 2.75rem 4vw 2.25rem;
    color: #475569;
}

.light-footer__grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.light-footer__section h4 {
    margin: 0 0 0.85rem;
    color: #0f172a;
    font-size: 1.1rem;
}

.light-footer__section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.4rem;
}

.light-footer__section a {
    color: inherit;
    text-decoration: none;
}

.light-footer__section a:hover,
.light-footer__section a:focus-visible {
    text-decoration: underline;
}

.light-footer__social {
    margin-top: 0.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.light-footer__note {
    max-width: 1240px;
    margin: 1.75rem auto 0;
    font-size: 0.9rem;
    color: #475569;
}

.light-footer__note--muted {
    margin-top: 0.5rem;
    color: #64748b;
}

.vs-footer {
    background: #fff;
    padding: 2.25rem 4vw 2.5rem;
}

.vs-footer__inner {
    max-width: 900px;
    margin: 0 auto;
}

.vs-footer__block + .vs-footer__block {
    margin-top: 1.25rem;
}

.vs-footer__block h4 {
    margin: 0 0 0.45rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

.vs-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.6rem;
    color: #64748b;
    font-size: 0.9rem;
}

.vs-footer__links li {
    display: inline-flex;
    align-items: center;
}

.vs-footer__links li + li::before {
    content: "|";
    color: #cbd5e1;
    margin-right: 0.6rem;
}

.vs-footer__links a {
    color: inherit;
    text-decoration: none;
}

.vs-footer__links a:hover,
.vs-footer__links a:focus-visible {
    text-decoration: underline;
}

.vs-footer__copy {
    margin: 1.6rem 0 0;
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
}

.vs-footer__copy--muted {
    margin-top: 0.35rem;
}

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

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.site-header {
    color: #fff;
}

.hero-container {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.2)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center top;
    min-height: 520px;
    padding: 0 5vw 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-hero-bar,
.mobile-hero-cta,
.mobile-home,
.mobile-footer {
    display: none;
}

.mobile-push {
    transition: transform 0.18s ease;
    will-change: transform;
}

.mobile-push.is-pushed {
    transform: translateX(var(--mobile-drawer-width));
}

.mobile-push.is-pushed .mobile-hero-icon[aria-label="Search"] {
    opacity: 0;
    pointer-events: none;
}

.mobile-hero-bar {
    padding: 0.9rem 4vw 0;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-hero-icon {
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.mobile-hero-icon__svg {
    width: 38px;
    height: 38px;
    color: #fff;
}

.mobile-hero-icon__svg.icon-x {
    display: none;
}

[data-mobile-menu-open][aria-expanded="true"] .icon-burger {
    display: none;
}

[data-mobile-menu-open][aria-expanded="true"] .icon-x {
    display: block;
}

.mobile-action__icon.icon-x {
    display: none;
}

.mobile-hero-logo img {
    height: 62px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.mobile-hero-cta {
    padding: 0 4vw 1.25rem;
    justify-content: center;
}

.mobile-post-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff7a00;
    color: #fff;
    font-weight: 800;
    border-radius: 2px;
    padding: 0.9rem 1.6rem;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.35);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.mobile-home {
    background: #fff;
}

.mobile-list {
    border-top: 1px solid #e5e7eb;
}

.mobile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 4vw;
    border-bottom: 1px solid #eef2f7;
    color: #0f172a;
    text-decoration: none;
    background: #fff;
}

button.mobile-row {
    width: 100%;
    appearance: none;
    border: 0;
    text-align: left;
}

.mobile-row--toggle {
    cursor: pointer;
}

.mobile-row--toggle:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.7);
    outline-offset: -2px;
}

.mobile-row--toggle[aria-expanded="true"] .mobile-plus__v {
    opacity: 0;
}

.mobile-accordion {
    display: none;
}

.mobile-accordion[data-open="true"] {
    display: block;
}

.mobile-accordion__title {
    padding: 1.05rem 4vw 0.75rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    background: #fff;
    border-bottom: 1px solid #eef2f7;
}

.mobile-row--sub .mobile-row__label {
    font-weight: 500;
}

.mobile-row__left {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
}

.mobile-row__badge {
    font-weight: 800;
    font-size: 1rem;
}

.mobile-row__icon {
    width: 22px;
    height: 22px;
    color: #0f172a;
    flex: 0 0 auto;
}

.mobile-row__label {
    font-size: 1.05rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-row__right {
    display: grid;
    place-items: center;
    color: #111827;
}

.mobile-plus {
    width: 26px;
    height: 26px;
    color: #111827;
}

.mobile-section-title {
    background: #f3f4f6;
    color: #0f172a;
    font-weight: 600;
    padding: 0.7rem 4vw;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-row--plain .mobile-row__label {
    font-weight: 500;
}

.mobile-footer {
    background: #fff;
    padding: 2.25rem 4vw 2.75rem;
    text-align: center;
}

.mobile-footer__social {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.mobile-social {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: transparent;
    text-decoration: none;
}

.mobile-social__img {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
}

.mobile-social--fb {
    background: #3b5998;
}

.mobile-social--x {
    background: #111;
}

.mobile-social--ig {
    background: radial-gradient(circle at 30% 30%, #feda75 0%, #fa7e1e 25%, #d62976 55%, #962fbf 75%, #4f5bd5 100%);
}

.mobile-social--yt {
    background: #c4302b;
}

.mobile-social--yt .mobile-social__img {
    width: 22px;
    height: 22px;
}

.mobile-footer__copy {
    margin: 0.35rem auto 0;
    max-width: 520px;
    color: #475569;
    font-size: 0.85rem;
    line-height: 1.45;
}

.mobile-footer__copy--muted {
    color: #64748b;
}

.desktop-footer {
    display: block;
}

.footer-browse {
    background: #f3f4f6;
    border-top: 1px solid #e5e7eb;
    padding: 2.75rem 0;
}

.footer-browse__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 5vw;
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 3rem;
}

.footer-browse h4 {
    margin: 0 0 0.65rem;
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 800;
}

.footer-browse p {
    margin: 0 0 2.25rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-community {
    margin-top: 1.2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    text-decoration: none;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
}

.footer-social__img {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
}

.footer-social__img--tt {
    width: 26px;
    height: 26px;
}

.footer-social--fb {
    background: #3b5998;
}

.footer-social--x {
    background: #111;
}

.footer-social--ig {
    background: radial-gradient(circle at 30% 30%, #feda75 0%, #fa7e1e 25%, #d62976 55%, #962fbf 75%, #4f5bd5 100%);
}

.footer-social--tt {
    background: #000;
}

.footer-social--yt {
    background: #c4302b;
}

.footer-links {
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

.footer-links__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 2.5rem 5vw 2.25rem;
}

.footer-links__grid {
    display: grid;
    grid-template-columns: 200px repeat(4, minmax(140px, 1fr));
    gap: 2.25rem;
    align-items: start;
}

.footer-links__logo img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.footer-links__col {
    display: grid;
    gap: 0.55rem;
}

.footer-links__col a {
    color: #334155;
    font-weight: 500;
    text-decoration: none;
}

.footer-links__col a:hover,
.footer-links__col a:focus-visible {
    text-decoration: underline;
}

.footer-links__divider {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 2.25rem 0 1.75rem;
}

.footer-links__copy {
    margin: 0;
    text-align: center;
    color: #334155;
    font-size: 0.9rem;
}

.footer-links__copy a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
}

.footer-links__copy a:hover,
.footer-links__copy a:focus-visible {
    text-decoration: underline;
}

.footer-links__note {
    margin: 0.55rem auto 0;
    max-width: 920px;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
}

.hero-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.75rem;
    padding: 0.65rem 0;
    background: transparent;
    border-bottom: none;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.hero-logo img {
    height: 72px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.35));
}

.hero-nav__links {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    margin: 0 0 0 auto;
    padding: 0;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-nav__links a {
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
    text-transform: capitalize;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 0.25rem;
}

.hero-nav__links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.hero-nav__links a:hover::after,
.hero-nav__links a:focus-visible::after {
    transform: scaleX(1);
}

.hero-cta {
    background: #ff7a00;
    border-radius: 2px;
    color: #fff;
    font-weight: 700;
    padding: 0.6rem 1.6rem;
    border: 1px solid rgba(0, 0, 0, 0.7);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-main {
    text-align: center;
    margin: 2.5rem auto 1.5rem;
    max-width: 1280px;
    position: relative;
    z-index: 80;
}

.hero-eyebrow {
    display: none;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.hero-main h1 {
    font-size: clamp(0.95rem, 1.7vw, 1.35rem);
    margin: 0 0 1.25rem;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.hero-search {
    background: rgba(114, 122, 132, 0.88);
    border-radius: 0;
    padding: 1.05rem 1.5rem;
    display: grid;
    grid-template-columns: 200px 1fr 1fr 120px;
    gap: 1.1rem;
    align-items: center;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.22);
    border: 0;
    max-width: 1080px;
    margin: 0 auto;
}

.hero-search label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 0.25rem;
}

.hero-search__field input,
.hero-search__field select {
    width: 100%;
    border-radius: 6px;
    border: 1px solid rgba(15, 23, 42, 0.15);
    padding: 0.7rem 1.1rem;
    font-size: 1rem;
    background: #fff;
    box-shadow: inset 0 1px 3px rgba(15, 23, 42, 0.08);
}

.hero-search__field select {
    background: #fff;
}

.dropdown {
    position: relative;
    width: 100%;
}

.dropdown__toggle {
    width: 100%;
    border-radius: 2px;
    border: 1px solid #cbd5e1;
    background: #fff;
    padding: 0.65rem 2.5rem 0.65rem 1.1rem;
    font-size: 1rem;
    font-weight: 500;
    color: #111827;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    height: 44px;
}

.dropdown__toggle:hover,
.dropdown[data-open="true"] .dropdown__toggle {
    background: #e5e7eb;
    border-color: rgba(15, 23, 42, 0.2);
}

.dropdown__arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid #6b7280;
    border-bottom: 2px solid #6b7280;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.2s ease;
}

.dropdown[data-open="true"] .dropdown__arrow {
    transform: translateY(-50%) rotate(-135deg);
}

.dropdown__menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(15, 23, 42, 0.08);
    list-style: none;
    padding: 0.35rem 0;
    margin: 0;
    max-height: 260px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 200;
}

.dropdown[data-open="true"] .dropdown__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown__menu li {
    width: 100%;
}

.dropdown__menu button {
    width: 100%;
    padding: 0.6rem 1rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 0.95rem;
    color: #0f172a;
    cursor: pointer;
    transition: background 0.15s ease;
}

.dropdown__menu button:hover,
.dropdown__menu button:focus-visible {
    background: #f1f5f9;
}

.hero-search__prompt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0.5rem 0 0.85rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
    text-align: left;
    max-width: 190px;
    line-height: 1.25;
}

.hero-search__submit {
    background: #ff7a00;
    border: 1px solid rgba(0, 0, 0, 0.7);
    border-radius: 2px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.65rem 1.2rem;
    align-self: center;
    height: 44px;
    cursor: pointer;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);
}

.hero-tabs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    background: rgba(114, 122, 132, 0.85);
    border: 0;
    width: 100%;
}

.hero-tabs-wrapper {
    position: relative;
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    z-index: 50;
}

.hero-tabs li {
    flex: 1;
    text-align: center;
}

.hero-tabs .hero-tab {
    display: block;
    padding: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    width: 100%;
    text-decoration: none;
    font-family: inherit;
    font-size: 0.95rem;
    border-top: 0;
    border-left: 0;
    border-bottom: 0;
    cursor: pointer;
}

.hero-tabs li:last-child .hero-tab {
    border-right: none;
}

.hero-tabs .hero-tab[aria-expanded="true"] {
    background: rgba(0, 0, 0, 0.22);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.28);
    border-top: 0;
    display: none;
    z-index: 60;
}

.mega-menu[data-open="true"] {
    display: block;
}

.mega-menu__inner {
    padding: 1.35rem 2rem 1.5rem;
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.mega-col {
    flex: 1;
    min-width: 0;
}

.mega-title {
    margin: 0 0 0.6rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
}

.mega-title--upper {
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.mega-title--spacer {
    visibility: hidden;
}

.mega-title--mt {
    margin-top: 1.25rem;
}

.mega-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.32rem;
}

.mega-list a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 400;
}

.mega-list a:hover,
.mega-list a:focus-visible {
    text-decoration: underline;
}

button,
input,
select {
    font-family: inherit;
}

button {
    border: none;
    cursor: pointer;
}

.primary-btn {
    background: var(--color-primary);
    color: #fff;
    border-radius: 999px;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn.secondary {
    background: rgba(16, 185, 129, 0.12);
    color: var(--color-primary-dark);
}

.primary-btn:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.25);
}

.ghost-btn {
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
    border: 1px solid var(--color-border);
    background: transparent;
    font-weight: 600;
    color: var(--color-text);
}

.ghost-link {
    color: var(--color-primary-dark);
    font-weight: 600;
}

/* legacy hero styles removed */

main {
    padding: 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    color: var(--color-muted);
    font-weight: 700;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.category-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 0, 0, 0.1);
}

.category-card header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-primary-dark);
    display: grid;
    place-items: center;
    font-size: 1.35rem;
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--color-muted);
}

.category-card li {
    margin-bottom: 0.35rem;
}

.category-card footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    font-weight: 600;
}

.trust-strip {
    margin: 3rem 0;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    border: 1px solid var(--color-border);
}

.featured-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.listing-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
}

.listing-card__media {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-surface);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}

.listing-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.listing-meta {
    display: flex;
    justify-content: space-between;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.category-pill {
    background: rgba(15, 23, 42, 0.08);
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.listing-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.tag {
    background: rgba(15, 23, 42, 0.06);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.latest-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cta-card {
    background: linear-gradient(135deg, #0ea5e9, #22c55e);
    border-radius: var(--radius-lg);
    color: #fff;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 4rem 0;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.city-card {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.safety-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.site-footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 4vw;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.footer-grid h4 {
    color: #fff;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid li {
    margin-bottom: 0.35rem;
}

.social-row {
    display: flex;
    gap: 0.75rem;
    font-size: 1.5rem;
}

.footer-note {
    text-align: center;
    margin: 0;
}

@media (max-width: 960px) {
    .hero-search {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .hero-nav__links {
        display: none;
    }

    .top-nav__links {
        display: none;
    }

    .hero-cta-strip {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-cta-strip {
        display: none !important;
    }
}

@media (max-width: 640px) {
    .mobile-push.is-pushed {
        transform: translateX(var(--mobile-drawer-width));
    }

    .hero-container {
        min-height: 255px;
        padding: 0;
    }

    .hero-main {
        display: none;
    }

    .hero-search__submit {
        width: 100%;
    }

    .hero-tabs {
        display: none;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
    }

    .hero-nav {
        display: none;
    }

    .mobile-hero-bar {
        display: flex;
    }

    .mobile-hero-cta {
        display: flex;
    }

    .mobile-home {
        display: block;
    }

    .hero-cta-strip {
        display: none;
    }

    .mobile-footer {
        display: block;
    }

    .desktop-footer {
        display: none;
    }

    .top-nav {
        padding: 0.65rem 4vw;
        gap: 0.75rem;
    }

    .top-logo img {
        height: 48px;
    }

    .top-nav__mobile {
        display: inline-flex;
    }

    .top-nav__cta {
        display: none;
    }

    .auth-main {
        padding: 1.25rem 0 0;
        background: #fff;
        border-bottom: 1px solid var(--color-border);
        min-height: auto;
        place-items: start stretch;
    }

    .auth-card {
        width: 100%;
        border-radius: 0;
        border: 0;
        box-shadow: none;
        padding: 1.5rem 4vw 1.25rem;
    }

    .auth-title {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }

    .auth-field input {
        padding: 0.85rem 0.95rem;
    }

    .auth-submit {
        padding: 1rem 1rem;
        border-radius: 8px;
    }

    .auth-divider {
        margin: 1.25rem 0 0.9rem;
    }

    .vs-footer {
        padding: 1.25rem 4vw 2.25rem;
    }

    .vs-footer__inner {
        max-width: 560px;
    }

    .vs-footer__links {
        display: grid;
        gap: 0.65rem;
        font-size: 0.95rem;
    }

    .vs-footer__links li + li::before {
        content: none;
        margin: 0;
    }

    .vs-footer__copy {
        margin-top: 1.25rem;
    }
}

.browse-links {
    background: #f1f5f9;
    border-radius: 24px;
    padding: 2.5rem;
    display: grid;
    gap: 1.75rem;
    border: 1px solid var(--color-border);
    margin-bottom: 3rem;
}

.hero-cta-strip {
    background: #545b73;
    padding: 1.5rem 4vw;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 600;
    gap: 3.5rem;
    margin: 0;
    width: 100%;
}

.hero-cta-strip .primary-btn {
    border-radius: 6px;
    background: linear-gradient(180deg, #ffa72a, #ff8620);
    border: 1px solid #c96b0f;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 0.9rem 2.5rem;
}

.hero-cta-strip p {
    margin: 0;
}

.browse-links__cta {
    background: #4e5868;
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
}

.browse-links__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.browse-links__content h4 {
    margin: 0 0 0.5rem;
    color: #0f172a;
}

.browse-links__content p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.5;
}

.social-list {
    display: flex;
    gap: 0.75rem;
}

.social-list a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    color: #111;
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.12);
}

a.auth-link {
    color: #2563eb;
    text-decoration: underline;
}

a.auth-link:hover,
a.auth-link:focus-visible {
    text-decoration-thickness: 2px;
}
