:root {
    --bg: #070a12;
    --panel: #0e1427;
    --panel2: #111a33;
    --text: #efffff;
    --muted: #aab7e6;
    --brand: #66e3ff;
    --accent: #8b5cf6;
    --border: hsla(0, 0%, 100%, .1);
    --shadow: 0 12px 40px rgba(0, 0, 0, .45);
    --radius: 18px;
    --radius2: 12px;
    --max: 1160px;
    --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    --page-bg: radial-gradient(1200px 500px at 20% -20%, rgba(102, 227, 255, .2), transparent 60%), radial-gradient(900px 500px at 80% 0, rgba(139, 92, 246, .18), transparent 55%), linear-gradient(180deg, #06070d, #070a12 35%, #06070d);
    --header-bg: rgba(7, 10, 18, .55);
    --footer-bg: rgba(7, 10, 18, .65);
    --panel-grad-start: rgba(17, 26, 51, .7);
    --panel-grad-end: rgba(14, 20, 39, .55);
    --soft-surface: hsla(0, 0%, 100%, .04);
    --nav-hover: hsla(0, 0%, 100%, .06);
    --line: var(--border);
    --surface: var(--soft-surface);
    --bg1x: 0px;
    --bg1y: 0px;
    --bg2x: 0px;
    --bg2y: 0px;
    --bg3x: 0px;
    --bg3y: 0px
}

html[data-theme="light"] {
    --text: #0f172a;
    --muted: #4b5563;
    --brand: #0284c7;
    --accent: #d97706;
    --border: rgba(15, 23, 42, .14);
    --shadow: 0 10px 30px rgba(15, 23, 42, .12);
    --page-bg: radial-gradient(900px 420px at 20% -15%, rgba(14, 165, 233, .14), transparent 60%), radial-gradient(900px 420px at 80% -10%, rgba(245, 158, 11, .14), transparent 58%), linear-gradient(180deg, #f8fafc, #eff6ff 45%, #f8fafc);
    --header-bg: rgba(255, 255, 255, .78);
    --footer-bg: rgba(255, 255, 255, .86);
    --panel-grad-start: rgba(255, 255, 255, .96);
    --panel-grad-end: rgba(243, 247, 255, .94);
    --soft-surface: rgba(15, 23, 42, .05);
    --nav-hover: rgba(15, 23, 42, .07)
}

* {
    box-sizing: border-box
}

body,
html {
    min-height: 100%
}

html {
    background-color: var(--bg);
    background: var(--page-bg);
    background-repeat: no-repeat;
    overscroll-behavior-y: none;
    -webkit-overflow-scrolling: touch
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--text);
    background-color: var(--bg);
    background: var(--page-bg);
    background-repeat: no-repeat;
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: .2;
    background-image: url("/img/bg/car-ghost.svg"), url("/img/bg/stop-sign-ghost.svg"), url("/img/bg/intersection-ghost.svg");
    background-repeat: no-repeat;
    background-position: calc(8% + var(--bg1x)) calc(18% + var(--bg1y)), calc(90% + var(--bg2x)) calc(30% + var(--bg2y)), calc(14% + var(--bg3x)) calc(82% + var(--bg3y));
    background-size: clamp(145px, 15vw, 260px), clamp(100px, 11vw, 185px), clamp(155px, 17vw, 300px)
}

html[data-theme="light"] body::before {
    opacity: 0;
    background-image: none;
}

@media (max-width:760px) {
    body::before {
        opacity: .14;
        background-position: calc(-26px + var(--bg1x)) calc(18% + var(--bg1y)), calc(100% + 18px + var(--bg2x)) calc(34% + var(--bg2y)), calc(8% + var(--bg3x)) calc(84% + var(--bg3y));
        background-size: 130px, 90px, 158px
    }

    html[data-theme="light"] body::before {
        opacity: 0;
        background-image: none;
    }
}

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

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto
}

.header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 20;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    background: var(--header-bg);
    border-bottom: 0
}

.header__inner {
    justify-content: space-between;
    padding: 14px 0
}

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

.logo {
    gap: 10px
}

.logo__mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(102, 227, 255, .22), rgba(139, 92, 246, .22));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    font-weight: 800
}

.logo__text {
    font-weight: 800;
    letter-spacing: .2px
}

.header__controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 14px;
    margin-right: 10px
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--muted);
    position: relative;
    margin-left: auto
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 16px
}

.nav a {
    padding: 8px 10px;
    border-radius: 12px
}

.nav a:hover {
    background: var(--nav-hover);
    color: var(--text)
}

.nav-dropdown {
    position: relative
}

.nav-dropdown summary {
    list-style: none;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 12px;
    color: inherit
}

.nav-dropdown summary::-webkit-details-marker {
    display: none
}

.nav-dropdown summary::after {
    content: "▾";
    font-size: .72rem;
    margin-left: 6px;
    opacity: .8
}

.nav-dropdown summary:hover {
    background: var(--nav-hover);
    color: var(--text)
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--header-bg);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    z-index: 40
}

.nav-dropdown[open] .nav-dropdown__menu,
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
    display: flex
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--soft-surface);
    color: var(--text);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, .14);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer
}

.nav-toggle__stripe {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor
}

@media (max-width:760px) {
    .header__inner {
        position: relative;
        justify-content: space-between;
        width: 100%
    }

    .logo {
        margin-left: 8px;
        margin-right: auto
    }

    .header__controls {
        margin-left: auto;
        margin-right: 10px
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: 0;
        margin-right: 0
    }

    .nav {
        margin-left: 0;
        order: 3;
        position: static
    }

    .nav__menu {
        display: none;
        position: absolute;
        left: 10px;
        right: 10px;
        top: calc(100% + 8px);
        z-index: 30;
        width: auto;
        min-width: 0;
        max-width: none;
        border-radius: 14px;
        border: 1px solid var(--border);
        background: rgba(10, 14, 26, .94);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        box-shadow: var(--shadow);
        padding: 10px;
        flex-direction: column;
        align-items: stretch;
        gap: 6px
    }

    .nav.nav--open .nav__menu {
        display: flex
    }

    .nav__menu a {
        padding: 10px 12px
    }

    .nav-dropdown summary {
        padding: 10px 12px
    }

    .nav-dropdown summary::after {
        float: right
    }

    .nav-dropdown__menu {
        position: static;
        min-width: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        padding: 4px 0 4px 10px;
        gap: 2px
    }

    .nav-dropdown__menu a {
        padding: 8px 10px
    }

    .theme-toggle {
        margin-top: 6px;
        display: flex;
        gap: 10px
    }
}

@media (max-width:760px) {
    html[data-theme="light"] .nav-toggle {
        background: rgba(255, 255, 255, .88);
        color: #0f172a;
    }

    html[data-theme="light"] .nav__menu {
        background: rgba(255, 255, 255, .96);
    }

    html[data-theme="dark"] .nav-toggle {
        background: rgba(10, 14, 26, .88);
    }
}

.theme-btn {
    border: 0;
    background: var(--soft-surface);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: var(--text);
    border-radius: 12px;
    width: 34px;
    height: 34px;
    cursor: pointer;
    line-height: 1
}

.theme-btn:hover {
    background: var(--nav-hover)
}

.theme-btn.is-active {
    box-shadow: inset 0 0 0 1px rgba(102, 227, 255, .55)
}

.hero {
    padding: 44px 0 18px
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    grid-gap: 22px;
    gap: 22px;
    align-items: stretch
}

@media (max-width:900px) {
    .hero__grid {
        grid-template-columns: 1fr
    }
}

.h1 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
    margin: 0 0 12px
}

.lead {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6
}

.heroPanel {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, var(--panel-grad-start), var(--panel-grad-end));
    box-shadow: var(--shadow);
    padding: 18px
}

.kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 12px;
    gap: 12px
}

.kpi {
    border-radius: 14px;
    border: 0;
    background: var(--soft-surface);
    padding: 12px
}

.kpi b {
    display: block;
    font-size: 1.1rem
}

.kpi span {
    color: var(--muted);
    font-size: .92rem
}

.disclosure {
    margin: 14px 0 0;
    padding: 12px 14px;
    border-radius: 14px;
    background: transparent;
    border: 0;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.4
}

.top-disclosure {
    padding-top: 10px
}

.top-disclosure .disclosure {
    margin: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 10px;
    align-items: start;
    padding: 10px 12px 11px;
    border-radius: 12px;
    border: 0;
    background:
        linear-gradient(90deg, color-mix(in srgb, var(--brand) 35%, transparent), color-mix(in srgb, var(--accent) 25%, transparent)) top/100% 2px no-repeat,
        color-mix(in srgb, var(--brand) 8%, transparent);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px)
}

.top-disclosure .disclosure__icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 800;
    color: var(--text);
    background: color-mix(in srgb, var(--brand) 22%, transparent);
    border: 1px solid color-mix(in srgb, var(--brand) 35%, transparent);
    margin-top: 1px
}

.top-disclosure .disclosure__text {
    display: block;
    min-width: 0
}

.top-disclosure .disclosure__title {
    display: block;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 1px
}

@media (max-width:640px) {
    .top-disclosure .disclosure {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 10px 11px
    }

    .top-disclosure .disclosure__icon {
        width: 16px;
        height: 16px;
        font-size: .66rem
    }
}

.section {
    padding: 18px 0 44px
}

.guide-hero {
    margin-top: 8px
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.guide-grid--two {
    grid-template-columns: repeat(2, 1fr)
}

.guide-card {
    border-radius: var(--radius);
    border: 0;
    background: hsla(0, 0%, 100%, .03);
    padding: 16px 16px 20px;
    min-height: 0;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12)
}

.guide-card h3,
.guide-card h2 {
    margin-top: 0
}

.guide-card p {
    margin: 8px 0;
    color: var(--muted);
    line-height: 1.6
}

html[data-theme="light"] .guide-grid .guide-card {
    background: #fff;
    color: #0f172a;
}

html[data-theme="light"] .guide-grid .guide-card p,
html[data-theme="light"] .guide-grid .guide-card .guide-list {
    color: #475569;
}

html[data-theme="dark"] .guide-grid .guide-card {
    background: linear-gradient(180deg, var(--panel-grad-start), var(--panel-grad-end));
    color: var(--text);
}

.guide-list {
    margin: 10px 0 0;
    padding-left: 18px;
    line-height: 1.65;
    color: var(--muted)
}

.guide-list li {
    margin: 4px 0
}

.guide-actions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.info-band {
    border-radius: var(--radius2);
    border: 1px solid var(--border);
    background: var(--soft-surface);
    padding: 12px 14px;
    color: var(--muted);
    line-height: 1.55
}

@media (max-width:980px) {
    .guide-grid,
    .guide-grid--two {
        grid-template-columns: 1fr
    }
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 22px;
    gap: 22px
}

@media(max-width:980px) {
    .grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:640px) {
    .grid {
        grid-template-columns: 1fr
    }
}

.card {
    border-radius: var(--radius);
    background: linear-gradient(180deg, var(--panel-grad-start), var(--panel-grad-end));
    box-shadow: var(--shadow);
    padding: 16px 16px 20px;
    min-height: 0;
    height: auto
}

.card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px
}

.card__brand {
    margin: 0;
    color: var(--muted);
    font-size: .95rem
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(102, 227, 255, .1);
    border: 1px solid rgba(102, 227, 255, .25)
}

.badge__label {
    font-weight: 700;
    font-size: .88rem
}

.badge__score {
    font-family: var(--mono);
    color: var(--brand);
    font-weight: 800;
    font-size: .88rem
}

.card__media {
    display: block;
    margin: 12px 0 10px
}

.card__imgWrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    min-height: 220px;
    padding: 12px;
    border-radius: var(--radius2);
    border: 0px solid var(--border);
    background: #fff;
    overflow: hidden
}

.card-gallery__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .28s ease;
}

.card-gallery__img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-gallery__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, .65);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.card-gallery__btn--prev {
    left: 8px;
}

.card-gallery__btn--next {
    right: 8px;
}

.card-gallery__dots {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    display: inline-flex;
    gap: 6px;
    z-index: 2;
}

.card-gallery__dot {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, .35);
    cursor: pointer;
}

.card-gallery__dot.is-active {
    background: rgba(15, 23, 42, .75);
}

.card__imgWrap img {
    transition: transform .35s ease;
    transform-origin: center center
}

.card__media:hover .card__imgWrap img,
.card__media:focus-visible .card__imgWrap img {
    transform: scale(1.12)
}

.imgPlaceholder {
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--muted)
}

.card__title {
    margin: 6px 0;
    font-size: 1.06rem;
    line-height: 1.3
}

.card__headline {
    margin: 0 0 10px;
    color: var(--muted);
    line-height: 1.55
}

.card__bullets {
    margin: 0;
    padding: 0 0 0 18px;
    line-height: 1.55
}

.card__bullets li {
    margin: 6px 0
}

.card__actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
    padding-top: 14px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 0;
    background: var(--soft-surface);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, .14);
    font-weight: 700;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease
}

.btn:hover {
    transform: scale(1.03);
    background: hsla(0, 0%, 100%, .08);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .22)
}

.btn--primary {
    background: linear-gradient(135deg, rgba(102, 227, 255, .18), rgba(139, 92, 246, .18))
}

.btn--primary:hover {
    background: linear-gradient(135deg, rgba(102, 227, 255, .25), rgba(139, 92, 246, .24))
}

.btn--ghost {
    background: hsla(0, 0%, 100%, .03)
}

.btn--ghost:hover {
    background: hsla(0, 0%, 100%, .06)
}

.page {
    padding: 26px 0 56px
}

.prose {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: hsla(0, 0%, 100%, .03);
    padding: 18px;
    line-height: 1.75;
    box-shadow: var(--shadow)
}

.prose p {
    color: var(--muted)
}

.review-hero {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 18px;
    align-items: start;
    margin: 8px 0 12px;
}

.review-hero__media .card__imgWrap {
    margin: 0;
    min-height: 260px;
}

.review-hero__copy h1 {
    margin-top: 0;
}

.review-hero__copy .affiliate-note {
    margin-top: 6px;
}

.review-hero__copy .card__actions {
    margin-top: 12px;
    padding-top: 0;
}

@media (max-width: 760px) {
    .review-hero {
        grid-template-columns: 1fr;
    }
}

.affiliate-note {
    margin: -4px 0 12px;
    font-size: .78rem;
    color: var(--muted);
    opacity: .9
}

.footer__disclosure {
    font-size: 1rem;
    line-height: 1.35;
}

.footer {
    border-top: 0;
    background: var(--footer-bg);
    padding: 18px 0;
    margin-top: auto
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap
}

.footer__links {
    display: flex;
    gap: 14px
}

.footer__links,
.muted {
    color: var(--muted)
}

.card {
    background: hsla(0, 0%, 100%, .03);
    border: 0;
    border-radius: 18px;
    padding: 16px 16px 20px;
    min-height: 0;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
    transition: transform .2s ease, box-shadow .2s ease
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3)
}

.card__imageWrapper {
    background: #0e1116;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 240px
}

.card__content {
    padding: 18px
}

.card__title {
    font-size: 1.05rem;
    margin: 0 0 8px
}

.card__titleLink {
    color: #fff;
    text-decoration: none
}

.card__titleLink:hover {
    text-decoration: underline
}

.card__brand {
    color: #9aa3af;
    font-size: .85rem;
    margin-bottom: 8px
}

.card__score {
    font-size: .9rem;
    margin-bottom: 8px
}

.card__headline {
    font-size: .9.4rem;
    color:  var(--brand);
    margin-bottom: 12px
}

.card__features {
    font-size: .85rem;
    margin-bottom: 12px;
    padding-left: 18px
}

.page-home .card,
.page-best .card {
    background: transparent;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
    border-color: transparent;
}

.page-home .card:hover,
.page-best .card:hover {
    transform: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .16);
}

html[data-theme="dark"] .page-home .hero .card {
    background: linear-gradient(180deg, var(--panel-grad-start), var(--panel-grad-end));
}

html[data-theme="dark"] .page-home .guide-grid .card {
    background: linear-gradient(180deg, var(--panel-grad-start), var(--panel-grad-end));
}

html[data-theme="dark"] .page-best .hero .card {
    background: linear-gradient(180deg, var(--panel-grad-start), var(--panel-grad-end));
}

html[data-theme="light"] .grid .card {
    background: #fff;
    color: #0f172a;
}

html[data-theme="light"] .grid .card .card__title a {
    color: #0f172a;
}

html[data-theme="light"] .grid .card .card__brand,
html[data-theme="light"] .grid .card .card__headline,
html[data-theme="light"] .grid .card .muted {
    color: #475569;
}

html[data-theme="dark"] .grid .card {
    background: linear-gradient(180deg, var(--panel-grad-start), var(--panel-grad-end));
    color: var(--text);
}
