:root {
    --ink: #17231d;
    --muted: #647068;
    --paper: #f8f7f2;
    --card: #fff;
    --line: #dfe4df;
    --green: #245f42;
    --green-dark: #163e2b;
    --lime: #dff26d;
    --orange: #f68b3c;
    --shadow: 0 18px 50px rgba(29, 52, 39, 0.09);
    --radius: 22px;
    --max: 1180px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.55;
}
button,
input,
select {
    font: inherit;
}
a {
    color: inherit;
    text-decoration: none;
}
*:focus-visible {
    outline: 3px solid #9cad2f;
    outline-offset: 3px;
}
img,
svg {
    display: block;
    max-width: 100%;
}
.skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    z-index: 99;
    background: white;
    padding: 0.7rem 1rem;
    border-radius: 8px;
}
.skip-link:focus {
    top: 1rem;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(248, 247, 242, 0.93);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(223, 228, 223, 0.85);
}
.nav-wrap {
    max-width: var(--max);
    margin: auto;
    height: 60px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 850;
    letter-spacing: -0.025em;
}
.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.64rem;
    font-weight: 650;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.brand-mark {
    width: 34px;
    min-width: 34px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    overflow: visible;
}
.brand-mark svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}
.brand-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}
.menu-button {
    border: 0;
    background: transparent;
    font-size: 1.35rem;
    line-height: 1;
    padding: 0.45rem;
}
.main-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1rem 1rem;
}
.main-nav.open {
    display: grid;
}
.main-nav a {
    padding: 0.8rem;
    font-weight: 700;
}
.nav-categories summary { cursor: pointer; font-weight: 700; padding: 0.8rem; }
.nav-categories div { display: grid; padding-left: 0.6rem; }
.nav-categories summary::marker { color: var(--green); }
main {
    min-height: 70vh;
}
.shell {
    width: min(var(--max), calc(100% - 2rem));
    margin-inline: auto;
}
.section {
    padding: 4rem 0;
}
.section-tight {
    padding: 2.2rem 0;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 1rem;
    color: var(--green);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}
.eyebrow::before {
    content: "";
    width: 23px;
    height: 2px;
    background: var(--orange);
}
h1,
h2,
h3,
p {
    margin-top: 0;
}
h1,
h2,
h3 {
    line-height: 1.08;
    letter-spacing: -0.045em;
}
h1 {
    font-size: clamp(2.55rem, 9vw, 5.8rem);
    max-width: 870px;
    margin-bottom: 1.25rem;
}
h2 {
    font-size: clamp(2rem, 6vw, 3.4rem);
    margin-bottom: 1rem;
}
h3 {
    font-size: 1.25rem;
}
.lede {
    max-width: 660px;
    color: var(--muted);
    font-size: clamp(1.02rem, 2vw, 1.22rem);
}
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.5rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 48px;
    padding: 0.75rem 1.15rem;
    border: 1px solid var(--green);
    border-radius: 13px;
    background: var(--green);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 0.2s,
        box-shadow 0.2s,
        background 0.2s;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(36, 95, 66, 0.18);
    background: var(--green-dark);
}
.btn-secondary {
    color: var(--green);
    background: transparent;
}
.btn-light {
    color: var(--ink);
    background: white;
    border-color: white;
}
.btn-shopee {
    background: #ee4d2d;
    border-color: #ee4d2d;
}
.btn-shopee:hover {
    background: #d94327;
}
.hero {
    overflow: hidden;
    padding: 3.5rem 0 2.5rem;
}
.hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}
.hero-copy h1 span {
    color: var(--green);
}
.trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 650;
}
.trust-line span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.visual-card {
    position: relative;
    min-height: 390px;
    border-radius: 35px;
    overflow: hidden;
    background: var(--green);
    color: white;
    box-shadow: var(--shadow);
}
.sun {
    position: absolute;
    width: 170px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--lime);
    top: -35px;
    right: -35px;
}
.city {
    position: absolute;
    inset: auto 0 0;
    height: 54%;
    opacity: 0.17;
    background: repeating-linear-gradient(
        90deg,
        transparent 0 27px,
        #fff 28px 54px
    );
    clip-path: polygon(
        0 40%,
        13% 40%,
        13% 12%,
        27% 12%,
        27% 50%,
        40% 50%,
        40% 25%,
        53% 25%,
        53% 0,
        66% 0,
        66% 45%,
        80% 45%,
        80% 22%,
        92% 22%,
        92% 60%,
        100% 60%,
        100% 100%,
        0 100%
    );
}
.bike-art {
    position: absolute;
    inset: 18% 3% 6%;
    display: grid;
    place-items: center;
}
.bike-art svg {
    width: 100%;
    filter: drop-shadow(0 16px 14px rgba(0, 0, 0, 0.18));
}
.visual-note {
    position: absolute;
    left: 1.2rem;
    bottom: 1.2rem;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    padding: 0.8rem 1rem;
    border-radius: 14px;
    font-weight: 800;
    box-shadow: var(--shadow);
}
.visual-note small {
    display: block;
    color: var(--muted);
    font-weight: 600;
}
.proof-strip {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
}
.proof-strip div {
    padding: 1rem 0.7rem;
    text-align: center;
    border-right: 1px solid var(--line);
}
.proof-strip div:last-child {
    border: 0;
}
.proof-strip strong {
    display: block;
    font-size: 1.2rem;
    color: var(--green);
}
.proof-strip small {
    color: var(--muted);
}
.section-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1.8rem;
}
.section-head p {
    color: var(--muted);
    max-width: 540px;
    margin: 0;
}
.needs-grid {
    display: grid;
    gap: 1rem;
}
.need-card {
    position: relative;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    overflow: hidden;
    transition:
        transform 0.2s,
        border-color 0.2s;
}
.need-card:hover {
    transform: translateY(-3px);
    border-color: var(--green);
}
.need-icon {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    background: var(--paper);
    border-radius: 15px;
    font-size: 1.45rem;
}
.need-card h3 {
    margin: 1rem 0 0.35rem;
}
.need-card p {
    color: var(--muted);
    margin: 0;
    font-size: 0.9rem;
}
.arrow {
    position: absolute;
    right: 1.2rem;
    top: 1.2rem;
    color: var(--green);
    font-weight: 900;
}
.product-grid {
    display: grid;
    gap: 1.1rem;
}
.product-card {
    display: grid;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(29, 52, 39, 0.04);
}
.home-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.home-product-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
}
.home-product-card > div {
    padding: 1.15rem;
}
.home-product-card h3 {
    margin: 0.3rem 0 0.45rem;
}
.home-product-card h3 a {
    color: inherit;
    text-decoration: none;
}
.home-product-card p {
    color: var(--muted);
    font-size: 0.92rem;
}
.home-product-image {
    display: grid;
    height: 230px;
    padding: 0.8rem;
    background: var(--product-color);
}
.home-product-image .product-photo {
    min-height: 0;
}
.home-product-price {
    color: var(--ink);
}
.random-brand {
    display: grid;
    grid-template-columns: 0.45fr 1.55fr;
    gap: 2rem;
    align-items: center;
    margin-top: 1.5rem;
    padding: 2rem;
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--brand-color) 12%, white);
}
.brand-logo-wrap {
    position: relative;
    display: grid;
    width: 9rem;
    height: 5rem;
    padding: 0.75rem;
    place-items: center;
    border-radius: 1rem;
    background: #17231d;
}
.brand-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.brand-logo-fallback {
    display: none;
    color: white;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-align: center;
}
.brand-logo-wrap.asset-error .brand-logo { display: none; }
.brand-logo-wrap.asset-error .brand-logo-fallback { display: block; }
.brand-logo-hero {
    width: 11rem;
    height: 5.5rem;
    margin: 1rem 0;
}
@media (max-width: 760px) {
    .home-product-grid,
    .random-brand {
        grid-template-columns: 1fr;
    }
    .home-product-image {
        height: 210px;
    }
}
.product-visual {
    position: relative;
    min-height: 210px;
    display: grid;
    place-items: center;
    padding: 1.2rem;
    background: var(--product-color);
}
.product-visual svg {
    width: 88%;
    max-height: 180px;
}
.product-photo {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: multiply;
}
.product-asset {
    display: grid;
    width: 100%;
    height: 100%;
    min-height: inherit;
    place-items: center;
}
.product-asset > .product-photo,
.product-asset > .vehicle-placeholder { grid-area: 1 / 1; }
.product-asset > .vehicle-placeholder { display: none; }
.product-asset-fallback > .vehicle-placeholder,
.product-asset.asset-error > .vehicle-placeholder { display: flex; }
.product-asset.asset-error > .product-photo { display: none; }

.detail-visual .product-photo {
    min-height: 420px;
    padding: 1rem;
}

.mini-bike .product-photo {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
}
.badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    padding: 0.38rem 0.65rem;
    border-radius: 99px;
    color: white;
    background: var(--product-accent);
    font-size: 0.72rem;
    font-weight: 800;
}
.score {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.38rem 0.6rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 850;
}
.product-body {
    padding: 1.25rem;
}
.product-kicker {
    color: var(--muted);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    font-weight: 800;
}
.product-body h3 {
    margin: 0.3rem 0 0.5rem;
    font-size: 1.45rem;
}
.price {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}
.price small {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 600;
}
.spec-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
    margin: 1rem 0;
}
.spec-row div {
    padding: 0.65rem 0.45rem;
    border-radius: 11px;
    background: var(--paper);
    text-align: center;
}
.spec-row strong,
.spec-row small {
    display: block;
}
.spec-row small {
    color: var(--muted);
    font-size: 0.68rem;
}
.reason {
    padding: 0.85rem;
    border-left: 3px solid var(--lime);
    background: #f8faec;
    border-radius: 0 10px 10px 0;
    color: #465048;
    font-size: 0.86rem;
}
.tradeoff {
    color: var(--muted);
    font-size: 0.83rem;
    margin: 0.8rem 0 0;
}
.tradeoff strong {
    color: var(--ink);
}
.card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 1rem;
}
.card-actions .btn {
    min-height: 43px;
    padding: 0.55rem 0.7rem;
    font-size: 0.82rem;
}
.affiliate-note {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.73rem;
}
.dark-section {
    background: var(--green-dark);
    color: white;
}
.dark-section .eyebrow {
    color: var(--lime);
}
.dark-section .section-head p {
    color: #b9c9bf;
}
.steps {
    display: grid;
    gap: 1rem;
    counter-reset: step;
}
.step {
    padding: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
}
.step::before {
    counter-increment: step;
    content: "0" counter(step);
    display: block;
    color: var(--lime);
    font-size: 0.78rem;
    font-weight: 900;
    margin-bottom: 2rem;
}
.step p {
    color: #b9c9bf;
    margin: 0;
}
.page-hero {
    padding: 3.2rem 0 2rem;
    border-bottom: 1px solid var(--line);
}
.page-hero h1 {
    font-size: clamp(2.3rem, 7vw, 4.7rem);
}
.breadcrumbs {
    display: flex;
    gap: 0.45rem;
    color: var(--muted);
    font-size: 0.78rem;
    margin-bottom: 1.4rem;
}
.filter-bar {
    display: grid;
    gap: 0.8rem;
    margin: 1.5rem 0 2rem;
    padding: 1rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
}
.filter-bar label {
    display: grid;
    gap: 0.35rem;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 750;
}
.filter-bar select {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 10px;
    padding: 0.7rem;
    color: var(--ink);
}
.finder-card {
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
}
.calculator-layout { display: grid; gap: 1.5rem; align-items: start; }
.calculator-form, .calculator-output { min-width: 0; }
.calculator-form { padding: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.calculator-section h2, .calculator-form details h2 { font-size: 1.35rem; }
.calculator-section, .calculator-form details { margin-bottom: 1rem; }
.calculator-form details { border-top: 1px solid var(--line); padding-top: 1rem; }
.calculator-form summary { cursor: pointer; color: var(--green-dark); font-weight: 850; }
.calculator-grid { display: grid; gap: 0.85rem; margin-top: 1rem; }
.calculator-form label { display: grid; gap: 0.35rem; margin: 0 0 0.85rem; font-size: 0.82rem; font-weight: 800; }
.calculator-form select, .input-affix { width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: 11px; background: var(--paper); }
.calculator-form select { padding: 0.7rem; color: var(--ink); }
.input-affix { display: flex; align-items: center; overflow: hidden; }
.input-affix input { width: 100%; min-width: 0; padding: 0.7rem; border: 0; outline-offset: -3px; background: transparent; color: var(--ink); }
.input-affix small { flex: none; padding: 0 0.75rem; color: var(--muted); font-weight: 700; }
.input-affix:has(input[aria-invalid="true"]) { border-color: #a43e2c; }
.field-error { color: #8a2e20; font-size: 0.72rem; font-weight: 650; }
.privacy-note, .assumption-note, .tco-bars p { color: var(--muted); font-size: 0.78rem; }
.calculator-results { display: grid; gap: 0.8rem; }
.calculator-results > article, .tco-bars, .assumption-note { padding: 1.1rem; border: 1px solid var(--line); border-radius: 16px; background: white; }
.calculator-results article small, .calculator-results article strong, .calculator-results article span { display: block; }
.calculator-results article strong { margin: 0.3rem 0; color: var(--green); font-size: clamp(1.6rem, 5vw, 2.25rem); letter-spacing: -0.04em; }
.calculator-results article strong.negative { color: #a43e2c; }
.result-highlight { background: #f1f6e5 !important; border-color: #c9da9a !important; }
.tco-bars h2 { font-size: 1.25rem; }
.tco-bars div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
.assumption-note { margin: 1rem 0; background: #edf5ef; }
.assumption-note ul { margin-bottom: 0; padding-left: 1.2rem; }
@media (min-width: 760px) { .calculator-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .calculator-layout { grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr); } .calculator-output { position: sticky; top: 80px; } }
.optional-category { border: 0; margin: 0 0 1.2rem; padding: 0; }
.optional-category legend { font-size: 0.84rem; font-weight: 800; }
.optional-category small { color: var(--muted); }
.category-filter input { position: absolute; opacity: 0; pointer-events: none; }
.category-filter span { display: block; }
.category-filter { border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-weight: 700; padding: 0.7rem 1rem; }
.category-filter.active, .category-filter:has(input:checked) { background: var(--green); border-color: var(--green); color: white; }
.category-entry-grid, .solution-overview { display: grid; gap: 1rem; }
.category-entry { background: white; border: 1px solid var(--line); border-radius: var(--radius); color: inherit; display: flex; gap: 1rem; padding: 1.2rem; text-decoration: none; }
.category-entry > span, .solution-overview article > span { font-size: 2rem; }
.category-entry h3, .category-entry p { margin: 0.25rem 0; }
.category-entry small { color: var(--green); font-weight: 800; }
.solution-overview { margin: 1.5rem 0 2.5rem; }
.solution-overview article { background: #f1f6e5; border: 1px solid #c9da9a; border-radius: 14px; display: flex; gap: 0.9rem; padding: 1rem; }
.solution-overview h3, .solution-overview p { margin: 0 0 0.35rem; }
.result-group { border-top: 1px solid var(--line); padding: 2rem 0; }
.finder-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.2rem;
}
.finder-grid label {
    display: grid;
    gap: 0.45rem;
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 800;
}
.finder-grid select {
    width: 100%;
    min-height: 48px;
    padding: 0.7rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 11px;
}
.form-hint,
.range-footnote {
    margin: 0.8rem 0 0;
    color: var(--muted);
    font-size: 0.78rem;
}
.finder-empty {
    margin-top: 1rem;
    padding: 2.5rem 1rem;
    text-align: center;
    color: var(--muted);
    border: 1px dashed var(--line);
    border-radius: var(--radius);
}
.finder-empty p {
    margin: 0.4rem auto 0;
    max-width: 530px;
}
.results-panel {
    padding-top: 3rem;
}
.answer-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}
.answer-summary span {
    padding: 0.45rem 0.7rem;
    color: var(--green-dark);
    background: #edf5ef;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 750;
}
.fit-block {
    margin-top: 1rem;
    padding: 0.85rem;
    border-radius: 11px;
    background: #f0f7e5;
    font-size: 0.83rem;
}
.fit-block ul {
    margin: 0.45rem 0 0;
    padding-left: 1.1rem;
}
.not-fit {
    padding: 0.8rem;
    color: #6c4035;
    background: #fff2ed;
    border-radius: 10px;
    font-size: 0.82rem;
}
.source-note {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.45;
}
.source-note a {
    text-decoration: underline;
}
.method-box {
    margin: 1.5rem 0;
    padding: 1.25rem;
    border: 1px solid #b9d0c0;
    border-radius: var(--radius);
    background: #edf5ef;
}
.method-box h3 {
    margin-bottom: 0.5rem;
}
.method-box p {
    color: var(--muted);
}
.method-box a {
    color: var(--green);
    font-weight: 800;
}
.results-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: 0.86rem;
}
.empty {
    grid-column: 1/-1;
    padding: 3rem 1rem;
    text-align: center;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    color: var(--muted);
}
.compare-picker {
    display: grid;
    gap: 0.7rem;
    margin: 1.5rem 0;
}
.compare-chip {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: white;
    cursor: pointer;
}
.compare-chip:has(input:checked) {
    border-color: var(--green);
    box-shadow: inset 0 0 0 1px var(--green);
}
.compare-chip input {
    accent-color: var(--green);
}
.compare-chip small {
    display: block;
    margin-top: 0.2rem;
    color: var(--muted);
}
.insight-grid {
    display: grid;
    gap: 0.6rem;
    margin: 1rem 0;
}
.insight-grid div {
    padding: 0.85rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: white;
}
.insight-grid small,
.insight-grid strong {
    display: block;
}
.insight-grid small {
    color: var(--muted);
    margin-bottom: 0.2rem;
}
.row-winner {
    display: block;
    margin-top: 0.3rem;
    color: var(--green);
    font-size: 0.68rem;
}
.winning-cell {
    background: #f7fae9;
}
.compare-wrap {
    overflow-x: auto;
    padding-bottom: 0.7rem;
}
.compare-table {
    min-width: 700px;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.compare-table th,
.compare-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}
.compare-table th:first-child,
.compare-table td:first-child {
    width: 160px;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 750;
    background: #fbfbf8;
}
.compare-table tr:last-child td {
    border-bottom: 0;
}
.compare-head {
    min-width: 170px;
}
.compare-head .mini-bike {
    height: 90px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    margin-bottom: 0.8rem;
}
.compare-head svg {
    width: 120px;
}
.winner {
    display: inline-flex;
    padding: 0.25rem 0.5rem;
    border-radius: 99px;
    background: var(--lime);
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 850;
}
.detail-grid {
    display: grid;
    gap: 2rem;
}
.detail-visual {
    min-height: 360px;
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 30px;
    background: var(--product-color);
    overflow: hidden;
}
.detail-visual svg {
    width: 85%;
}
.thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.7rem;
}
.thumb {
    width: 60px;
    height: 48px;
    border: 1px solid var(--line);
    background: white;
    border-radius: 9px;
    display: grid;
    place-items: center;
    font-size: 0.7rem;
    color: var(--muted);
}
.rating {
    color: #a85f08;
    font-weight: 800;
    font-size: 0.85rem;
}
.detail-title {
    font-size: clamp(2.25rem, 7vw, 4.1rem);
    margin: 0.5rem 0 1rem;
}
.verdict {
    font-size: 1.08rem;
    color: var(--muted);
}
.key-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
    margin: 1.4rem 0;
}
.key-specs div {
    padding: 0.85rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
}
.key-specs small {
    display: block;
    color: var(--muted);
}
.choice-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0;
    list-style: none;
}
.choice-list li {
    border: 1px solid var(--line);
    border-radius: 99px;
    padding: 0.45rem 0.75rem;
    font-size: 0.8rem;
    background: white;
}
.buy-box {
    margin-top: 1.5rem;
    padding: 1rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: 17px;
    box-shadow: var(--shadow);
}
.buy-box .btn {
    width: 100%;
    margin-top: 0.7rem;
}
.buy-meta {
    display: flex;
    justify-content: space-between;
    gap: 0.7rem;
    color: var(--muted);
    font-size: 0.74rem;
}
.analysis-grid {
    display: grid;
    gap: 1rem;
}
.analysis-card {
    padding: 1.3rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
}
.analysis-card.good {
    border-top: 4px solid var(--green);
}
.analysis-card.caution {
    border-top: 4px solid var(--orange);
}
.analysis-card ul {
    margin: 0;
    padding-left: 1.2rem;
}
.spec-table {
    width: 100%;
    border-collapse: collapse;
}
.spec-table td {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
}
.spec-table td:last-child {
    text-align: right;
    font-weight: 750;
}
.spec-table td:first-child {
    width: 34%;
}
.guide-grid {
    display: grid;
    gap: 1rem;
}
.guide-card {
    background: white;
    border: 1px solid var(--line);
    padding: 1.4rem;
    border-radius: var(--radius);
}
.guide-card span {
    display: grid;
    place-items: center;
    width: 42px;
    aspect-ratio: 1;
    margin-bottom: 1.2rem;
    border-radius: 12px;
    color: var(--green);
    background: var(--lime);
    font-weight: 900;
}
.disclosure {
    display: flex;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid #efd7b8;
    border-radius: 14px;
    background: #fff8eb;
    color: #665744;
    font-size: 0.8rem;
}
.no-match-card {
    padding: clamp(1.25rem, 4vw, 2.25rem);
    border: 2px solid #e6a071;
    border-radius: var(--radius);
    background: #fff7f1;
}
.no-match-card p {
    max-width: 720px;
    color: var(--muted);
}
.brand-grid,
.simple-product-grid,
.brand-facts,
.brand-source-grid {
    display: grid;
    gap: 1rem;
}
.brand-card,
.simple-product,
.brand-facts article,
.source-list {
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
}
.brand-card {
    border-top: 5px solid var(--brand-color);
}
.brand-card h2 {
    margin: 1rem 0 0.55rem;
}
.brand-card .btn {
    margin-top: 1rem;
}
.brand-monogram {
    width: 54px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: white;
    background: var(--brand-color);
    font-weight: 900;
}
.muted {
    color: var(--muted);
}
.brand-facts article {
    border-top: 4px solid var(--brand-color, var(--green));
}
.brand-facts h2 {
    font-size: 1.55rem;
}
.brand-facts li {
    margin-bottom: 0.5rem;
}
.source-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    margin: 1rem 0 2rem;
}
.source-list a,
.text-link {
    color: var(--green);
    text-decoration: underline;
    font-weight: 750;
}
.simple-product small {
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 800;
}
.simple-product h3 {
    margin: 0.5rem 0;
}
.simple-product-visual {
    height: 180px;
    margin: -1.35rem -1.35rem 1rem;
    overflow: hidden;
    border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
    background: var(--product-color);
}
.simple-product-visual .product-photo { min-height: 0; }
.simple-product-visual .vehicle-placeholder span { font-size: 3.5rem; }
.brand-winners {
    grid-template-columns: repeat(2, 1fr);
}
.brand-table th a {
    color: var(--green);
    text-decoration: underline;
}
.site-footer {
    padding: 3rem 1rem 1.5rem;
    color: #dbe5df;
    background: #102c20;
}
.footer-grid {
    max-width: var(--max);
    margin: auto;
    display: grid;
    gap: 2rem;
}
.footer-grid p {
    color: #9fb2a7;
    font-size: 0.83rem;
    max-width: 390px;
}
.footer-grid div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
}
.footer-brand {
    margin-bottom: 0.8rem;
}
.footer-bottom {
    max-width: var(--max);
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    color: #82998b;
    font-size: 0.72rem;
}
.toast {
    position: fixed;
    z-index: 80;
    left: 50%;
    bottom: 1.2rem;
    transform: translate(-50%, 120px);
    opacity: 0;
    width: min(92%, 430px);
    padding: 0.9rem 1rem;
    border-radius: 13px;
    background: var(--ink);
    color: white;
    text-align: center;
    font-size: 0.85rem;
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}
.toast.show {
    transform: translate(-50%, 0);
    opacity: 1;
}

@media (min-width: 640px) {
    .category-entry-grid, .solution-overview { grid-template-columns: repeat(3, 1fr); }
    .needs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .filter-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .finder-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .insight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .compare-picker {
        grid-template-columns: repeat(3, 1fr);
    }
    .steps,
    .guide-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .analysis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .simple-product-grid,
    .brand-facts {
        grid-template-columns: repeat(2, 1fr);
    }
    .brand-source-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1.2fr;
    }
}
@media (min-width: 900px) {
    .menu-button {
        display: none;
    }
    .main-nav {
        position: static;
        display: flex;
        background: transparent;
        border: 0;
        padding: 0;
        gap: 0.35rem;
    }
    .main-nav a {
        padding: 0.5rem 0.8rem;
        font-size: 0.88rem;
    }
    .nav-categories { position: relative; }
    .nav-categories summary { padding: 0.5rem 0.8rem; font-size: 0.88rem; }
    .nav-categories div { background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); display: none; left: 0; min-width: 200px; padding: 0.35rem; position: absolute; top: 100%; }
    .nav-categories[open] div { display: grid; }
    .hero {
        padding: 5rem 0 3rem;
    }
    .hero-grid {
        grid-template-columns: 1.12fr 0.88fr;
        gap: 3rem;
    }
    .visual-card {
        min-height: 510px;
    }
    .needs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .filter-bar {
        grid-template-columns: 1fr 1fr auto;
        align-items: end;
    }
    .finder-card {
        padding: 1.7rem;
    }
    .finder-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .insight-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .detail-grid {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: start;
    }
    .detail-visual {
        min-height: 530px;
    }
    .key-specs {
        grid-template-columns: repeat(4, 1fr);
    }
    .brand-winners {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media (max-width: 520px) {
    .card-actions {
        grid-template-columns: 1fr;
    }
    .spec-table,
    .spec-table tbody,
    .spec-table tr,
    .spec-table td {
        display: block;
        width: 100%;
    }
    .spec-table tr {
        padding: 0.65rem 0;
        border-bottom: 1px solid var(--line);
    }
    .spec-table td {
        padding: 0.2rem 0;
        border: 0;
        text-align: left !important;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        transition: none !important;
    }
}

.category-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1rem 0;
}
.category-button {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper, #fff);
    color: inherit;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    padding: 0.7rem 1rem;
}
.category-button.active {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}
.needs-landing { background: #edf3ef; border-block: 1px solid var(--line); }
.home-category-switch { margin-top: 1.5rem; }
.filter-status { color: var(--muted); font-size: 0.88rem; margin-bottom: 1.25rem; }
.journey-grid, .ranking-preview-grid { display: grid; gap: 1rem; }
.journey-card { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; min-width: 0; padding: 1.2rem; border: 1px solid var(--line); border-radius: 18px; background: var(--card); box-shadow: 0 8px 25px rgba(29, 52, 39, 0.04); transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; }
.journey-card:hover { transform: translateY(-3px); border-color: var(--green); box-shadow: var(--shadow); }
.journey-card h3, .journey-card p { margin-bottom: 0.5rem; }
.journey-card p { color: var(--muted); font-size: 0.9rem; }
.journey-card strong { color: var(--green); font-size: 0.85rem; }
.journey-icon { display: grid; place-items: center; width: 2.7rem; height: 2.7rem; border-radius: 12px; background: var(--lime); font-size: 1.35rem; }
.ranking-preview { background: var(--ink); color: white; }
.ranking-preview .section-head > p, .ranking-preview article > p, .ranking-note p { color: #bfc9c2; }
.ranking-preview-grid article { position: relative; overflow: hidden; padding: 1.35rem; border: 1px solid #3a4740; border-radius: 20px; background: #202e27; }
.ranking-preview-grid article > strong { display: block; margin-bottom: 0.65rem; color: var(--lime); }
.rank-number { position: absolute; right: 1rem; top: 0.7rem; color: #435149; font-size: 2.2rem; font-weight: 900; }
.preview-tradeoff { margin: 1rem 0; padding-top: 1rem; border-top: 1px solid #3a4740; color: #dfe5e1; font-size: 0.88rem; }
.preview-tradeoff span { display: block; margin-bottom: 0.25rem; color: var(--orange); font-size: 0.72rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.ranking-preview .text-link { color: var(--lime); }
.ranking-note { display: grid; gap: 0.5rem; margin-top: 1rem; padding: 1.2rem; border-radius: 18px; background: #2c3b33; }
.ranking-note p { margin-bottom: 0.5rem; }
.ranking-note .btn { justify-self: start; border-color: #718078; color: white; }
@media (min-width: 640px) {
    .journey-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .journey-grid, .ranking-preview-grid { grid-template-columns: repeat(3, 1fr); }
    .ranking-note { grid-template-columns: 1fr 2fr auto; align-items: center; gap: 1.2rem; }
    .ranking-note p { margin: 0; }
}
.friendly-notice {
    background: #f1f6e5;
    border: 1px solid #c9da9a;
    border-radius: 14px;
    margin: 1rem 0;
    padding: 1rem 1.1rem;
}
.decision-card {
    margin-bottom: 1.25rem;
    padding: clamp(1.25rem, 4vw, 2rem);
    border: 1px solid #b9d0c0;
    border-radius: var(--radius);
    background: #edf5ef;
}
.decision-card h2 { max-width: 760px; }
.decision-caveat { margin-bottom: 0; color: var(--muted); font-size: 0.88rem; }
.comparison-points { display: grid; gap: 1rem; margin: 1.25rem 0; }
.comparison-points article { padding: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.comparison-points article > span, .alternative-rank { color: var(--green); font-weight: 900; letter-spacing: 0.08em; }
.comparison-points p, .comparison-points li { color: var(--muted); }
.social-card { display: grid; gap: 1.25rem; align-items: end; margin: 1.5rem 0; padding: clamp(1.4rem, 5vw, 2.5rem); border-radius: 28px; background: linear-gradient(135deg, var(--green-dark), var(--green)); color: white; box-shadow: var(--shadow); }
.social-card small, .social-card span { color: var(--lime); font-weight: 800; letter-spacing: 0.06em; }
.social-card h3 { margin: 0.55rem 0; font-size: clamp(1.8rem, 6vw, 3rem); }
.social-card p { max-width: 700px; }
.social-card .btn { justify-self: start; }
.alternative-list { display: grid; gap: 1rem; margin: 1.5rem 0; }
.alternative-card { position: relative; display: grid; gap: 1rem; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.alternative-visual { min-height: 210px; padding: 0.75rem; border-radius: 16px; background: var(--product-color); }
.alternative-visual .product-asset { height: 100%; }
.alternative-card h2 { margin: 0.25rem 0; font-size: clamp(1.65rem, 5vw, 2.4rem); }
@media (min-width: 760px) {
    .comparison-points { grid-template-columns: repeat(3, 1fr); }
    .social-card { grid-template-columns: 1fr auto; }
    .alternative-card { grid-template-columns: 38px minmax(220px, .7fr) minmax(0, 1.3fr); padding: 1.35rem; }
}
.category-field {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1rem;
    max-width: 28rem;
}
.category-pill {
    background: #edf3ef;
    border-radius: 999px;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    margin: 0 0.45rem 0.5rem 0;
    padding: 0.3rem 0.6rem;
}
.vehicle-placeholder {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    width: 100%;
    padding: 1rem;
    color: var(--ink);
    text-align: center;
}
.vehicle-placeholder span { font-size: clamp(4rem, 12vw, 8rem); }
.vehicle-placeholder small { font-weight: 800; }
.vehicle-placeholder strong {
    max-width: 18rem;
    margin-top: 0.25rem;
    font-size: clamp(0.8rem, 2vw, 1rem);
}
