:root {
    --paper: #ffffff;
    --warm: #faf9f6;
    --warm-2: #f4f2ec;
    --ink: #2c2a26;
    --ink-soft: #37352f;
    --body: #5f5b52;
    --muted: #8b8578;
    --coral: #ff385c;
    --coral-dk: #e11d48;
    --coral-soft: #fff1f3;
    --line: #ece9e1;
    --line-2: #f3f1ea;
    --star: #ffa800;
    --green: #1a9f63;
    --red: #d64545;
    --c-blue: #eef3fb;
    --c-blue-b: #d5e3f5;
    --c-green: #eef7f0;
    --c-green-b: #d3ebd9;
    --c-yellow: #fdf6e3;
    --c-yellow-b: #f2e4bd;
    --c-pink: #fdeef2;
    --c-pink-b: #f7d4de;
    --c-purple: #f4f0fb;
    --c-purple-b: #e2d6f5;
    --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --r-sm: 10px;
    --r: 16px;
    --r-lg: 24px;
    --shadow-sm: 0 1px 2px rgba(28, 28, 28, 0.05), 0 2px 6px rgba(28, 28, 28, 0.04);
    --shadow: 0 6px 20px rgba(28, 28, 28, 0.09);
    --shadow-lg: 0 18px 50px rgba(28, 28, 28, 0.14);
    --maxw: 1180px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    font-family: var(--font);
    color: var(--body);
    background: var(--paper);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
    color: var(--ink);
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin: 0 0 0.5em;
    font-weight: 800;
}
h1 {
    font-size: clamp(2.1rem, 4.6vw, 3.4rem);
    letter-spacing: -0.03em;
}
h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}
h3 {
    font-size: 1.25rem;
    font-weight: 700;
}
p {
    margin: 0 0 1rem;
}
a {
    color: var(--coral-dk);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    display: block;
}
ul {
    margin: 0 0 1rem;
}
.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}
.section {
    padding: 66px 0;
}
.section--soft {
    background: var(--warm);
}
.narrow {
    max-width: 780px;
    margin: 0 auto;
}
.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.96rem;
    padding: 13px 24px;
    border-radius: 12px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease;
    white-space: nowrap;
    text-decoration: none;
}
.btn:hover {
    text-decoration: none;
}
.btn--primary,
.btn--visit {
    background: var(--coral);
    color: #fff;
}
.btn--primary:hover,
.btn--visit:hover {
    background: var(--coral-dk);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 56, 92, 0.32);
}
.btn--dark {
    background: var(--ink);
    color: #fff;
}
.btn--dark:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}
.btn--outline {
    background: #fff;
    color: var(--ink);
    border-color: #dcd8cf;
}
.btn--outline:hover {
    border-color: var(--ink);
    color: var(--ink);
    transform: translateY(-2px);
}
.btn--ghost {
    background: var(--warm-2);
    color: var(--ink);
}
.btn--ghost:hover {
    background: var(--line);
    color: var(--ink);
}
.btn--sm {
    padding: 9px 16px;
    font-size: 0.87rem;
    border-radius: 10px;
}
.btn--lg {
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: 14px;
}
.btn--block {
    width: 100%;
}
.topbar {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 60;
}
.topbar__row {
    display: flex;
    align-items: center;
    gap: 18px;
    height: 70px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--ink);
    text-decoration: none;
    flex: none;
    letter-spacing: -0.02em;
}
.brand:hover {
    text-decoration: none;
    color: var(--ink);
}
.brand__mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--coral), #ff8a5c);
    color: #fff;
    font-weight: 800;
    display: grid;
    place-items: center;
    font-size: 0.85rem;
}
.cats {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--warm-2);
    padding: 5px;
    border-radius: 999px;
}
.cats a {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--body);
    padding: 8px 17px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.15s;
}
.cats a:hover {
    color: var(--ink);
    text-decoration: none;
}
.cats a.is-active {
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}
.cats .badge-new {
    font-size: 0.58rem;
    background: var(--coral);
    color: #fff;
    padding: 1px 5px;
    border-radius: 5px;
    margin-left: 4px;
    vertical-align: middle;
    letter-spacing: 0.05em;
}
.search {
    flex: 1;
    max-width: 300px;
    position: relative;
}
.search input {
    width: 100%;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    padding: 11px 16px 11px 40px;
    font: inherit;
    font-size: 0.92rem;
    background: var(--warm);
}
.search input:focus {
    outline: none;
    border-color: var(--coral);
    background: #fff;
}
.search svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
}
.topbar__right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex: none;
}
.nav__toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}
.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    margin: 4px 0;
    border-radius: 2px;
}
.subnav {
    background: #fff;
    border-bottom: 1px solid var(--line);
}
.subnav__row {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 52px;
    overflow-x: auto;
    scrollbar-width: none;
}
.subnav__row::-webkit-scrollbar {
    display: none;
}
.subnav a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--body);
    padding: 9px 15px;
    border-radius: 9px;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.15s;
}
.subnav a:hover {
    background: var(--warm);
    color: var(--ink);
    text-decoration: none;
}
.subnav a.is-active {
    color: var(--coral-dk);
    background: var(--coral-soft);
}
.hero {
    background: linear-gradient(180deg, #fff, var(--warm));
    padding: 72px 0 60px;
    border-bottom: 1px solid var(--line);
}
.hero__inner {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}
.hero h1 {
    margin-bottom: 16px;
}
.hero p {
    font-size: 1.22rem;
    color: var(--body);
    max-width: 640px;
    margin: 0 auto 30px;
}
.hero__search {
    display: flex;
    gap: 8px;
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 8px 8px 10px;
    box-shadow: var(--shadow);
}
.hero__search input {
    flex: 1;
    border: 0;
    padding: 13px 16px;
    font: inherit;
    font-size: 1.02rem;
    background: transparent;
    border-radius: 999px;
}
.hero__search input:focus {
    outline: none;
}
.hero__trust {
    display: flex;
    gap: 34px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 34px;
}
.hero__trust div b {
    display: block;
    font-size: 1.6rem;
    color: var(--ink);
    font-weight: 800;
}
.hero__trust div span {
    font-size: 0.86rem;
    color: var(--muted);
}
.hero--page {
    padding: 50px 0;
    text-align: left;
}
.hero--page .hero__inner {
    max-width: var(--maxw);
    margin: 0;
    text-align: left;
}
.hero--page p {
    margin: 0;
    max-width: 700px;
}
.crumbs {
    font-size: 0.84rem;
    color: var(--muted);
    padding: 16px 0 0;
}
.crumbs a {
    color: var(--muted);
}
.crumbs span {
    margin: 0 7px;
    opacity: 0.6;
}
.tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.tile {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 24px;
    text-decoration: none;
    transition:
        transform 0.15s,
        box-shadow 0.15s,
        border-color 0.15s;
}
.tile:hover {
    border-color: transparent;
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    text-decoration: none;
}
.tile__ic {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--coral-soft);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    margin-bottom: 14px;
}
.tile h3 {
    font-size: 1.08rem;
    margin-bottom: 5px;
    color: var(--ink);
}
.tile p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
}
.rate {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    color: #e6e2d8;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
}
.rate::before {
    content: "★★★★★";
}
.rate__on {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    white-space: nowrap;
    color: var(--star);
    width: var(--w, 0%);
}
.rate__on::before {
    content: "★★★★★";
}
.rate-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.rate-row b {
    color: var(--ink);
    font-weight: 800;
}
.rate-row span {
    color: var(--muted);
    font-size: 0.85rem;
}
.listing {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 28px;
    align-items: start;
}
.filters {
    position: sticky;
    top: 140px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 4px 0;
    box-shadow: var(--shadow-sm);
}
.filters__head {
    padding: 16px 20px;
    border-bottom: 1px solid var(--line-2);
    font-weight: 800;
    color: var(--ink);
    font-size: 0.98rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.filters__head button {
    background: none;
    border: 0;
    color: var(--coral-dk);
    font: inherit;
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: 700;
}
.fgroup {
    padding: 15px 20px;
    border-bottom: 1px solid var(--line-2);
}
.fgroup:last-child {
    border-bottom: 0;
}
.fgroup h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    margin: 0 0 11px;
    font-weight: 800;
}
.fopt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--body);
}
.fopt input {
    width: 17px;
    height: 17px;
    accent-color: var(--coral);
    cursor: pointer;
}
.results__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}
.results__bar h2 {
    margin: 0;
    font-size: 1.2rem;
}
.results__bar .count {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
}
.lcard {
    display: grid;
    grid-template-columns: 66px 1fr 210px;
    gap: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 22px;
    margin-bottom: 16px;
    transition:
        box-shadow 0.15s,
        transform 0.15s,
        border-color 0.15s;
}
.lcard:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    border-color: transparent;
}
.logo {
    width: 66px;
    height: 66px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
    flex: none;
}
.lcard__main h3 {
    margin: 0 0 6px;
    font-size: 1.22rem;
}
.lcard__main h3 a {
    color: var(--ink);
    text-decoration: none;
}
.lcard__main h3 a:hover {
    color: var(--coral-dk);
}
.lcard__desc {
    font-size: 0.93rem;
    margin: 9px 0 12px;
    color: var(--body);
}
.kv {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 18px;
    font-size: 0.85rem;
}
.kv span {
    color: var(--muted);
}
.kv b {
    color: var(--ink);
}
.lcard__side {
    display: flex;
    flex-direction: column;
    gap: 9px;
    border-left: 1px solid var(--line-2);
    padding-left: 20px;
}
.lcard__score {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.lcard__score b {
    font-size: 1.8rem;
    color: var(--ink);
    font-weight: 800;
    line-height: 1;
}
.lcard__score span {
    color: var(--muted);
    font-size: 0.8rem;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 8px;
}
.badge--top {
    background: var(--c-yellow);
    color: #a87b08;
}
.badge--value {
    background: var(--c-green);
    color: #127a44;
}
.badge--editor {
    background: var(--c-pink);
    color: var(--coral-dk);
}
.badge--fast {
    background: var(--c-purple);
    color: #6b3fd1;
}
.badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--shadow-sm);
}
table.cmp {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 760px;
}
table.cmp th,
table.cmp td {
    padding: 15px 17px;
    text-align: left;
    border-bottom: 1px solid var(--line-2);
    font-size: 0.92rem;
}
table.cmp thead th {
    background: var(--warm);
    color: var(--ink);
    font-weight: 800;
    border-bottom: 2px solid var(--line);
    position: sticky;
    top: 0;
}
table.cmp tbody tr:hover {
    background: var(--warm);
}
table.cmp td:first-child,
table.cmp th:first-child {
    font-weight: 700;
    color: var(--ink);
}
.pill {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 7px;
}
.pill--y {
    background: var(--c-green);
    color: #127a44;
}
.pill--n {
    background: var(--c-pink);
    color: #c0392b;
}
.pill--code {
    background: var(--warm-2);
    color: var(--ink);
    font-family: monospace;
}
.pc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.pc__box {
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 24px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.pc__box h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 1.05rem;
}
.pc__box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pc__box li {
    position: relative;
    padding-left: 27px;
    margin-bottom: 10px;
    font-size: 0.92rem;
}
.pc__box li::before {
    position: absolute;
    left: 0;
    top: 1px;
    font-weight: 800;
}
.pc__pros li::before {
    content: "✓";
    color: var(--green);
}
.pc__cons li::before {
    content: "✕";
    color: var(--red);
}
.subr {
    display: grid;
    gap: 14px;
}
.subr__row {
    display: grid;
    grid-template-columns: 160px 1fr 38px;
    align-items: center;
    gap: 14px;
}
.subr__row .lbl {
    font-size: 0.9rem;
    color: var(--body);
    font-weight: 600;
}
.subr__bar {
    height: 10px;
    background: var(--warm-2);
    border-radius: 999px;
    overflow: hidden;
}
.subr__bar i {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--coral), #ff8a5c);
    border-radius: 999px;
    transition: width 1s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.subr__row .val {
    font-weight: 800;
    color: var(--ink);
    font-size: 0.9rem;
    text-align: right;
}
.specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.specs > div {
    padding: 16px 20px;
    border-bottom: 1px solid var(--line-2);
    background: #fff;
}
.specs > div:nth-child(odd) {
    border-right: 1px solid var(--line-2);
}
.specs dt {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    font-weight: 800;
    margin-bottom: 3px;
}
.specs dd {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
}
.faq details {
    border: 1px solid var(--line);
    border-radius: var(--r);
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.faq summary {
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 700;
    color: var(--ink);
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    font-size: 1rem;
}
.faq summary::-webkit-details-marker {
    display: none;
}
.faq summary::after {
    content: "+";
    color: var(--coral);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
}
.faq details[open] summary::after {
    content: "−";
}
.faq details > p {
    padding: 0 22px 19px;
    margin: 0;
    font-size: 0.95rem;
}
.prose {
    font-size: 1.05rem;
}
.prose h2 {
    margin-top: 1.8em;
}
.prose h3 {
    margin-top: 1.4em;
}
.prose ul,
.prose ol {
    padding-left: 1.2em;
}
.prose li {
    margin-bottom: 0.55em;
}
.prose blockquote {
    border-left: 4px solid var(--coral);
    background: var(--warm);
    margin: 1.5em 0;
    padding: 16px 22px;
    border-radius: 0 12px 12px 0;
    color: var(--ink);
    font-size: 1.05rem;
}
.note {
    border-radius: 14px;
    padding: 18px 22px;
    margin: 1.5em 0;
    border: 1px solid;
    /* display: flex;
    gap: 12px;
    align-items: flex-start; */
}
.note .ic {
    font-size: 1.3rem;
    line-height: 1.3;
    flex: none;
}
.note p:last-child {
    margin: 0;
}
.note--blue {
    background: var(--c-blue);
    border-color: var(--c-blue-b);
}
.note--green {
    background: var(--c-green);
    border-color: var(--c-green-b);
}
.note--yellow {
    background: var(--c-yellow);
    border-color: var(--c-yellow-b);
}
.note--pink {
    background: var(--c-pink);
    border-color: var(--c-pink-b);
}
.note--purple {
    background: var(--c-purple);
    border-color: var(--c-purple-b);
}
.note strong {
    color: var(--ink);
}
.callout {
    background: var(--c-blue);
    border: 1px solid var(--c-blue-b);
    border-radius: 14px;
    padding: 18px 22px;
    margin: 1.5em 0;
}
.callout strong {
    color: var(--ink);
}
.toc {
    background: var(--warm);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 20px 24px;
    margin-bottom: 32px;
}
.toc h4 {
    margin: 0 0 11px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
}
.toc ol {
    margin: 0;
    padding-left: 1.3em;
}
.toc li {
    margin-bottom: 7px;
}
.steps {
    counter-reset: step;
    display: grid;
    gap: 16px;
}
.step {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 22px 24px;
    box-shadow: var(--shadow-sm);
}
.step::before {
    counter-increment: step;
    content: counter(step);
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: var(--coral);
    color: #fff;
    font-weight: 800;
    display: grid;
    place-items: center;
    font-size: 1.15rem;
}
.step h3 {
    margin: 0 0 5px;
    font-size: 1.12rem;
}
.step p {
    margin: 0;
    font-size: 0.95rem;
}
.path {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.pcard {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 24px;
    text-decoration: none;
    transition:
        transform 0.15s,
        box-shadow 0.15s;
    position: relative;
}
.pcard:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    text-decoration: none;
}
.pcard__step {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--coral);
}
.pcard h3 {
    font-size: 1.12rem;
    margin: 8px 0 6px;
    color: var(--ink);
}
.pcard p {
    font-size: 0.92rem;
    color: var(--muted);
    margin: 0;
}
.pcard__ic {
    font-size: 1.7rem;
    margin-bottom: 6px;
}
.cw-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    padding: 16px 18px;
    background: var(--warm);
    border: 1px solid var(--line);
    border-radius: 14px;
}
.cw-check {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--ink);
    cursor: pointer;
}
.cw-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--coral);
    cursor: pointer;
}
.cw-search {
    position: relative;
    margin-left: auto;
    min-width: 240px;
    flex: 1;
    max-width: 340px;
}
.cw-search input {
    width: 100%;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    padding: 10px 14px 10px 38px;
    font: inherit;
    font-size: 0.9rem;
    background: #fff;
}
.cw-search input:focus {
    outline: none;
    border-color: var(--coral);
}
.cw-search svg {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
}
.cw-grid {
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.cw-head {
    display: grid;
    background: var(--warm);
    border-bottom: 2px solid var(--line);
}
.cw-cell-firm {
    padding: 18px 16px;
    text-align: center;
    border-left: 1px solid var(--line-2);
    position: relative;
}
.cw-cell-firm:first-child {
    border-left: 0;
}
.cw-cell-firm .logo {
    width: 54px;
    height: 54px;
    font-size: 1.2rem;
    margin: 0 auto 10px;
}
.cw-cell-firm h3 {
    font-size: 1.05rem;
    margin: 0 0 4px;
}
.cw-cell-firm h3 a {
    color: var(--ink);
}
.cw-rm {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1;
}
.cw-rm:hover {
    color: var(--coral-dk);
    border-color: var(--coral);
}
.cw-add {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
}
.cw-add select {
    width: 100%;
    max-width: 200px;
    padding: 11px 12px;
    border: 1.5px dashed #c9c3b4;
    border-radius: 10px;
    font: inherit;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
}
.cw-sec {
    display: block;
}
.cw-sec__h {
    background: var(--ink);
    color: #fff;
    padding: 10px 16px;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.cw-row {
    display: grid;
    border-bottom: 1px solid var(--line-2);
}
.cw-row:hover {
    background: var(--warm);
}
.cw-row.is-diff {
    background: var(--c-yellow);
}
.cw-row.is-diff:hover {
    background: #fbf0d0;
}
.cw-lbl {
    padding: 12px 16px;
    font-weight: 700;
    color: var(--muted);
    font-size: 0.84rem;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.015);
}
.cw-val {
    padding: 12px 16px;
    text-align: center;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.92rem;
    border-left: 1px solid var(--line-2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cw-val.win {
    background: var(--c-green);
    color: #0d7a45;
    font-weight: 800;
}
.cw-empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--muted);
}
.cw-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.cw-chip {
    font-size: 0.84rem;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--body);
    cursor: pointer;
    transition: all 0.15s;
}
.cw-chip:hover {
    border-color: var(--ink);
    color: var(--ink);
}
.cw-chip.is-active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.cw-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.cw-val.worst {
    background: #fdecec;
    color: #c0392b;
    font-weight: 700;
}
.cw-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    background: var(--ink);
    color: #fff;
    padding: 11px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 200;
    opacity: 0;
    transition: opacity 0.2s;
}
.cw-toast.show {
    opacity: 1;
}
.winner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.winner-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 18px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.winner-card .cat {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--coral-dk);
}
.winner-card .firm {
    display: flex;
    align-items: center;
    gap: 10px;
}
.winner-card .firm .logo {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
}
.winner-card .firm b {
    color: var(--ink);
    font-size: 1.02rem;
}
.winner-card .acts {
    display: flex;
    gap: 7px;
    margin-top: auto;
}
@media (max-width: 760px) {
    .winner-grid {
        grid-template-columns: 1fr;
    }
}
@media print {
    .topbar,
    .subnav,
    .crumbs,
    .hero,
    .cta-band,
    .footer,
    .cw-controls,
    .cw-chips,
    .cw-actions,
    .cw-rm,
    .cw-add,
    .btn {
        display: none !important;
    }
    body {
        font-size: 12px;
    }
    .cw-grid {
        box-shadow: none;
    }
}
@media (max-width: 760px) {
    .cw-search {
        margin-left: 0;
        max-width: none;
    }
    .cw-cell-firm h3 {
        font-size: 0.86rem;
    }
    .cw-cell-firm .logo {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    .cw-lbl,
    .cw-val {
        font-size: 0.76rem;
        padding: 9px 7px;
    }
}
.pricerow {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 16px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 18px 22px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
}
.pricerow .logo {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
}
.pricerow__price {
    text-align: right;
}
.pricerow__price b {
    font-size: 1.5rem;
    color: var(--ink);
    font-weight: 800;
    display: block;
    line-height: 1;
}
.pricerow__price span {
    font-size: 0.78rem;
    color: var(--muted);
}
.cta-band {
    background: var(--ink);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 52px;
    text-align: center;
}
.cta-band h2 {
    color: #fff;
}
.cta-band p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin: 0 auto 26px;
}
.sec-head {
    max-width: 700px;
    margin: 0 0 36px;
}
.sec-head--c {
    margin: 0 auto 42px;
    text-align: center;
}
.sec-head p {
    font-size: 1.08rem;
    color: var(--body);
    margin: 0;
}
.grid {
    display: grid;
    gap: 18px;
}
.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid--2 {
    grid-template-columns: repeat(2, 1fr);
}
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition:
        box-shadow 0.15s,
        transform 0.15s;
}
.card:hover {
    box-shadow: var(--shadow);
}
.offer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.offer__top {
    display: flex;
    align-items: center;
    gap: 12px;
}
.offer__pct {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--coral-dk);
}
.offer code {
    background: var(--warm-2);
    border: 1px dashed #c9c3b4;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.05em;
}
.footer {
    background: #1f1d1a;
    color: rgba(255, 255, 255, 0.65);
    padding: 60px 0 32px;
}
.footer a {
    color: rgba(255, 255, 255, 0.65);
}
.footer a:hover {
    color: #fff;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 34px;
}
.footer h4 {
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer li {
    margin-bottom: 9px;
    font-size: 0.92rem;
}
.footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.18rem;
    color: #fff;
    margin-bottom: 12px;
}
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 42px;
    padding-top: 22px;
    font-size: 0.82rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer__disc {
    font-size: 0.79rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.48);
    margin-top: 16px;
    max-width: 780px;
}
@media (max-width: 960px) {
    .tiles {
        grid-template-columns: repeat(2, 1fr);
    }
    .listing {
        grid-template-columns: 1fr;
    }
    .filters {
        position: static;
    }
    .grid--3,
    .path {
        grid-template-columns: 1fr 1fr;
    }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 760px) {
    .section {
        padding: 48px 0;
    }
    .cats,
    .search {
        display: none;
    }
    .nav__toggle {
        display: block;
    }
    .topbar__right .btn {
        display: none;
    }
    .lcard {
        grid-template-columns: 54px 1fr;
    }
    .logo {
        width: 54px;
        height: 54px;
        font-size: 1.2rem;
    }
    .lcard__side {
        grid-column: 1/-1;
        border-left: 0;
        border-top: 1px solid var(--line-2);
        padding-left: 0;
        padding-top: 14px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
    .pc,
    .specs,
    .grid--3,
    .grid--2,
    .path {
        grid-template-columns: 1fr;
    }
    .specs > div:nth-child(odd) {
        border-right: 0;
    }
    .footer__grid {
        grid-template-columns: 1fr;
    }
    .subr__row {
        grid-template-columns: 115px 1fr 34px;
    }
    .vs-pickers {
        grid-template-columns: 1fr;
    }
    .vs-mid {
        margin: 0 auto;
    }
    .vs-table {
        grid-template-columns: 1fr 96px 1fr;
    }
    .vs-table > div {
        font-size: 0.84rem;
        padding: 11px 10px;
    }
    .cta-band {
        padding: 36px 22px;
    }
    .hero {
        padding: 48px 0 40px;
    }
}
@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 2px;
    border-radius: 6px;
}
.tbadges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 22px;
}
.tbadge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}
.tbadge span {
    color: var(--coral);
}
.statbar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.statbar .stat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 24px 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.statbar .stat b {
    display: block;
    font-size: 2rem;
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -0.02em;
}
.statbar .stat span {
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 600;
}
@media (max-width: 760px) {
    .statbar {
        grid-template-columns: 1fr 1fr;
    }
}
.tfirm {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tfirm .logo {
    width: 36px;
    height: 36px;
    font-size: 0.82rem;
    border-radius: 9px;
}
.tfirm b {
    color: var(--ink);
}
.trust-pill {
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}
.trust-vh {
    background: var(--c-green);
    color: #0d7a45;
}
.trust-h {
    background: var(--c-blue);
    color: var(--blue-dk);
}
.trust-g {
    background: var(--c-yellow);
    color: #a87b08;
}
.cat6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 760px) {
    .cat6 {
        grid-template-columns: 1fr 1fr;
    }
}
.latest {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.latest .lc {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}
.latest .lc h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--coral-dk);
    margin: 0 0 12px;
}
.latest .lc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.latest .lc li {
    margin-bottom: 9px;
    font-size: 0.92rem;
}
@media (max-width: 960px) {
    .latest {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 560px) {
    .latest {
        grid-template-columns: 1fr;
    }
}
.trend-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 2px 14px;
    scroll-snap-type: x mandatory;
}
.trend-card {
    flex: 0 0 230px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 18px;
    box-shadow: var(--shadow-sm);
}
.trend-card .th {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.trend-card .th .logo {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
}
.trend-card code {
    display: inline-block;
    background: var(--warm-2);
    border: 1px dashed #c9c3b4;
    padding: 5px 12px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--ink);
    font-size: 0.82rem;
    margin: 8px 0;
}
.signup {
    background: linear-gradient(135deg, var(--ink), #3a2f4a);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 44px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: center;
}
.signup h2 {
    color: #fff;
    margin-bottom: 8px;
}
.signup p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}
.signup__form {
    display: flex;
    gap: 10px;
    background: #fff;
    border-radius: 12px;
    padding: 7px;
}
.signup__form input {
    flex: 1;
    border: 0;
    padding: 13px 14px;
    font: inherit;
    font-size: 1rem;
    border-radius: 8px;
}
.signup__form input:focus {
    outline: none;
}
.signup small {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    margin-top: 10px;
}
@media (max-width: 760px) {
    .signup {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }
}
.authorline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--muted);
    justify-content: center;
    margin-top: 18px;
}
.authorline .av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral), #ff8a5c);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.8rem;
}
.rcard {
    display: grid;
    grid-template-columns: 96px 1fr 200px;
    gap: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 22px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition:
        box-shadow 0.15s,
        transform 0.15s;
}
.rcard:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.rcard__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
}
.rcard__logo .logo {
    width: 80px;
    height: 80px;
    font-size: 1.7rem;
    border-radius: 18px;
}
.rcard__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}
.rcard__head h3 {
    margin: 0 0 4px;
    font-size: 1.3rem;
}
.rcard__head h3 a {
    color: var(--ink);
}
.rcard__score {
    text-align: center;
    flex: none;
}
.rcard__score b {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
}
.rcard__score span {
    font-size: 0.78rem;
    color: var(--muted);
}
.rcard__desc {
    font-size: 0.92rem;
    color: var(--body);
    margin: 8px 0 12px;
}
.kstats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.kstat {
    font-size: 0.8rem;
    background: var(--warm);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 5px 10px;
    color: var(--muted);
}
.kstat b {
    color: var(--ink);
}
.rcard__pc {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.pcrow {
    font-size: 0.86rem;
}
.pcrow--pro {
    color: #127a44;
}
.pcrow--con {
    color: #c0392b;
}
.rcard__cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 1px solid var(--line-2);
    padding-left: 18px;
    justify-content: center;
}
@media (max-width: 760px) {
    .rcard {
        grid-template-columns: 60px 1fr;
    }
    .rcard__logo .logo {
        width: 54px;
        height: 54px;
        font-size: 1.2rem;
    }
    .rcard__logo .trust-pill {
        display: none;
    }
    .rcard__cta {
        grid-column: 1/-1;
        border-left: 0;
        border-top: 1px solid var(--line-2);
        padding-left: 0;
        padding-top: 14px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .rcard__cta .btn {
        flex: 1;
        min-width: 120px;
    }
}
.etop-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.etop {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 18px;
    text-align: center;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.15s,
        box-shadow 0.15s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}
.etop:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    text-decoration: none;
}
.etop__rank {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--coral);
}
.etop .logo {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
}
.etop b {
    color: var(--ink);
    font-size: 0.98rem;
}
.etop__score {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 700;
}
@media (max-width: 760px) {
    .etop-row {
        grid-template-columns: 1fr 1fr;
    }
}
.results__tools {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.sortbox {
    font-size: 0.86rem;
    color: var(--muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
}
.sortbox select {
    border: 1.5px solid var(--line);
    border-radius: 9px;
    padding: 7px 10px;
    font: inherit;
    font-size: 0.86rem;
    background: #fff;
    color: var(--ink);
    font-weight: 600;
    cursor: pointer;
}
.sortbox select:focus {
    outline: none;
    border-color: var(--coral);
}
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.afchip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--coral-soft);
    color: var(--coral-dk);
    border: 1px solid var(--c-pink-b);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
}
.afchip:hover {
    background: #fce0e6;
}
.afchip .x {
    font-weight: 800;
}
.filters-toggle {
    display: none;
    width: 100%;
    padding: 12px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: #fff;
    font: inherit;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    margin-bottom: 14px;
}
@media (max-width: 960px) {
    .filters-toggle {
        display: block;
    }
    .filters {
        display: none;
    }
    .filters.open {
        display: block;
        margin-bottom: 18px;
    }
}
.calc {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}
.calc__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.calc .fld {
    margin-bottom: 4px;
}
.calc label {
    font-weight: 700;
    color: var(--ink);
    font-size: 0.84rem;
    display: block;
    margin-bottom: 7px;
}
.calc select,
.calc input[type="number"] {
    width: 100%;
    padding: 11px 13px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font: inherit;
    background: #fff;
    color: var(--ink);
}
.calc select:focus,
.calc input:focus {
    outline: none;
    border-color: var(--coral);
}
.calc input[type="range"] {
    width: 100%;
    accent-color: var(--coral);
    margin-top: 6px;
}
.calc .rangeval {
    font-weight: 800;
    color: var(--coral-dk);
}
.calc__out {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.calc__stat {
    background: var(--warm);
    border: 1px solid var(--line-2);
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
}
.calc__stat b {
    display: block;
    font-size: 1.35rem;
    color: var(--ink);
    font-weight: 800;
    line-height: 1.1;
}
.calc__stat span {
    font-size: 0.76rem;
    color: var(--muted);
}
.calc__status {
    margin-top: 16px;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    font-size: 1rem;
}
.st-safe {
    background: var(--c-green);
    color: #0d7a45;
}
.st-caution {
    background: var(--c-yellow);
    color: #a87b08;
}
.st-danger {
    background: #fdeede;
    color: #c2700a;
}
.st-stop {
    background: var(--c-pink);
    color: #c0392b;
}
@media (max-width: 760px) {
    .calc__row {
        grid-template-columns: 1fr;
    }
    .calc__out {
        grid-template-columns: 1fr 1fr;
    }
}
.ddtier td:first-child {
    font-weight: 800;
}
.zone {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    margin-right: 7px;
    vertical-align: middle;
}
.z-green {
    background: var(--green);
}
.z-yellow {
    background: var(--star);
}
.z-orange {
    background: #e8870c;
}
.z-red {
    background: var(--red);
}
.tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 13px;
    border-radius: 999px;
    background: var(--warm-2);
    color: var(--ink);
    border: 1px solid var(--line);
}
.tag--good {
    background: var(--c-green);
    color: #127a44;
    border-color: var(--c-green-b);
}
.mtog-group {
    margin-bottom: 14px;
}
.mtog-group h4 {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin: 0 0 9px;
    font-weight: 800;
}
.matrix-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}
.mtoggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--body);
    cursor: pointer;
    transition: all 0.14s;
}
.mtoggle:hover {
    border-color: var(--ink);
    color: var(--ink);
}
.mtoggle.on {
    background: var(--coral);
    color: #fff;
    border-color: var(--coral);
    box-shadow: 0 4px 12px rgba(255, 56, 92, 0.28);
}
.matrix-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}
.matrix-bar .cnt {
    font-weight: 800;
    color: var(--ink);
    font-size: 1.05rem;
}
.matrix-bar .cnt span {
    color: var(--coral-dk);
}
.matrix-bar .acts {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.mgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 900px) {
    .mgrid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .mgrid {
        grid-template-columns: 1fr;
    }
}
.mcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 18px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.15s,
        box-shadow 0.15s;
}
.mcard:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.mcard__h {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 10px;
}
.mcard__h .logo {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
}
.mcard__h h3 {
    margin: 0;
    font-size: 1.04rem;
}
.mcard__h h3 a {
    color: var(--ink);
    text-decoration: none;
}
.mcard__h h3 a:hover {
    color: var(--coral-dk);
}
.mcard__sc {
    margin-left: auto;
    font-weight: 800;
    color: var(--ink);
    font-size: 1.1rem;
}
.mcard__sc span {
    font-size: 0.7rem;
    color: var(--muted);
    font-weight: 600;
}
.mpills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0 12px;
}
.mpill {
    font-size: 0.71rem;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 6px;
    background: var(--warm-2);
    color: var(--muted);
}
.mpill.on {
    background: var(--c-green);
    color: #127a44;
}
.mcard__kv {
    font-size: 0.84rem;
    color: var(--muted);
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 13px;
}
.mcard__kv b {
    color: var(--ink);
}
.mcard__cta {
    display: flex;
    gap: 8px;
}
.matrix-empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 50px 20px;
    color: var(--muted);
}
.sitehead {
    position: sticky;
    top: 0;
    z-index: 60;
    background: #fff;
    box-shadow: 0 1px 0 var(--line);
}
.topbar {
    background: #fff;
}
.topbar__row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    flex-wrap: nowrap;
    height: auto;
}
.brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex: none;
}
.brand__mark {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--coral);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    font-weight: 800;
}
.brand__txt em {
    color: var(--coral);
    font-style: normal;
}
.searchpill {
    flex: 1 1 180px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    padding: 9px 18px;
    min-width: 140px;
    max-width: 320px;
}
.searchpill input {
    border: 0;
    outline: 0;
    font: inherit;
    font-size: 0.94rem;
    width: 100%;
    background: transparent;
    color: var(--ink);
}
.searchpill input::placeholder {
    color: var(--muted);
}
.searchpill svg {
    color: var(--muted);
    flex-shrink: 0;
}
.btn--blue {
    background: #2f6bff;
    color: #fff;
    border: 0;
    padding: 11px 22px;
    border-radius: 11px;
    font-weight: 700;
    flex: none;
    white-space: nowrap;
}
.btn--blue:hover {
    background: #1f57e6;
    color: #fff;
}
.tools-inline {
    display: flex;
    gap: 8px;
    flex: none;
}
.tool-btn {
    font-weight: 700;
    font-size: 0.85rem;
    padding: 11px 16px;
    border-radius: 11px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: filter 0.15s;
}
.tool-btn:hover {
    filter: brightness(1.1);
    color: #fff;
}
.tool-btn--green {
    background: #16b364;
}
.tool-btn--navy {
    background: #33477a;
}
.iconnav {
    background: #fff;
    border-top: 1px solid var(--line);
}
.iconnav__row {
    display: flex;
    align-items: stretch;
    padding: 6px 0;
}
.iconnav__item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 9px 6px;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 12px;
    transition: all 0.14s;
}
.iconnav__item:hover {
    color: var(--ink);
    background: var(--warm);
}
.iconnav__item.is-active {
    color: var(--coral-dk);
    background: var(--c-pink);
}
.iconnav__item svg {
    color: inherit;
}
@media (max-width: 1024px) {
    .topbar__row {
        flex-wrap: wrap;
    }
    .searchpill {
        order: 5;
        flex-basis: 100%;
        max-width: none;
    }
    .tools-inline {
        order: 6;
        width: 100%;
        overflow-x: auto;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }
    .tool-btn {
        flex: 0 0 auto;
    }
}
@media (max-width: 820px) {
    .brand {
        font-size: 1.18rem;
    }
    .tool-btn {
        font-size: 0.78rem;
        padding: 10px 12px;
    }
    .iconnav__row {
        overflow-x: auto;
        scrollbar-width: thin;
    }
    .iconnav__item {
        flex: 0 0 auto;
        font-size: 0.76rem;
        padding: 8px 14px;
    }
}
.skip {
    position: absolute;
    left: -999px;
    top: 0;
    z-index: 200;
    background: var(--ink);
    color: #fff;
    padding: 11px 18px;
    border-radius: 0 0 10px 0;
    font-weight: 700;
    text-decoration: none;
}
.skip:focus {
    left: 0;
}
@media (max-width: 360px) {
    .grid,
    .grid--2,
    .grid--3,
    .cat6,
    .mgrid,
    .latest,
    .winner-grid,
    .calc__out,
    .calc__row {
        grid-template-columns: 1fr !important;
    }
    .lcard,
    .rcard {
        flex-direction: column;
    }
    .lcard__side,
    .rcard__side {
        width: 100%;
    }
    .cmp {
        font-size: 0.8rem;
    }
    .cmp th,
    .cmp td {
        padding: 9px 8px;
    }
    .statbar {
        grid-template-columns: 1fr 1fr;
    }
}
html,
body {
    overflow-x: clip;
    max-width: 100%;
}
a,
.btn,
.tool-btn,
.mtoggle,
.cw-chip,
.lcard,
.rcard,
.card,
.tile,
.mcard,
.winner-card,
.pcard,
.iconnav__item {
    transition:
        transform 0.16s ease,
        box-shadow 0.18s ease,
        background 0.16s ease,
        color 0.16s ease,
        border-color 0.16s ease,
        filter 0.16s ease;
}
.btn:active,
.tool-btn:active,
.mtoggle:active {
    transform: translateY(1px) scale(0.99);
}
:focus-visible {
    outline: 2.5px solid var(--coral);
    outline-offset: 2px;
    border-radius: 4px;
}
.btn:hover,
.btn--visit:hover {
    transform: translateY(-1px);
}
.tile:hover,
.card:hover,
.pcard:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
html {
    scroll-behavior: smooth;
}
.sitehead {
    transition: box-shadow 0.2s ease;
}
.sitehead.is-stuck {
    box-shadow: 0 8px 24px rgba(31, 24, 20, 0.07);
}
.hero {
    position: relative;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(var(--line) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.4;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 70%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 70%);
}
.hero__inner {
    position: relative;
    z-index: 1;
}
.js .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.55s cubic-bezier(0.2, 0.7, 0.3, 1),
        transform 0.55s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.js .reveal.in {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .js .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.prose > p:first-of-type {
    font-size: 1.1rem;
    color: var(--ink);
}
.prose blockquote {
    border-left: 4px solid var(--coral);
    background: var(--warm);
    margin: 1.4em 0;
    padding: 14px 20px;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--ink);
}
.prose h2 {
    scroll-margin-top: 150px;
    position: relative;
    padding-top: 0.2em;
}
.trustbar {
    display: flex;
    gap: 26px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.trustbar .ti {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    color: var(--ink);
    font-size: 0.92rem;
}
.trustbar .ti svg {
    color: var(--green);
    flex-shrink: 0;
}
.trustbar .ti small {
    display: block;
    color: var(--muted);
    font-weight: 500;
    font-size: 0.78rem;
}
.vrow {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0;
}
.vbadge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 800;
    padding: 5px 11px;
    border-radius: 999px;
    background: var(--c-green);
    color: #127a44;
}
.vbadge.alt {
    background: var(--c-blue);
    color: var(--blue-dk);
}
.coupon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px dashed var(--coral);
    background: var(--c-pink);
    color: var(--coral-dk);
    font-weight: 800;
    padding: 9px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.92rem;
    transition: all 0.15s;
}
.coupon:hover {
    background: #ffe1e7;
}
.coupon::before {
    content: "🎟";
}
.coupon.copied {
    border-style: solid;
}
.coupon.copied::after {
    content: "✓ Copied";
    color: var(--green);
    font-size: 0.8rem;
}
.tp-slot {
    border: 1.5px dashed var(--line);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    color: var(--muted);
    font-size: 0.86rem;
    background: var(--warm);
}
.logo {
    position: relative;
    overflow: visible;
}
.logo.is-img {
    background: #fff !important;
    border: 1px solid var(--line);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    padding: 14%;
}
.logo.is-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
    display: block;
}
.logo.is-round {
    border-radius: 50%;
}
.logo.is-round img {
    border-radius: 50%;
}
.logo.is-rect {
    width: 112px;
    height: 56px;
    border-radius: 10px;
    padding: 7px 12px;
}
.logo__badge {
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 22px;
    height: 22px;
    background-color: #f59e0b;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 62%;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.tfirm .logo__badge,
.trend-card .logo__badge {
    width: 16px;
    height: 16px;
    right: -4px;
    bottom: -4px;
}
.brand__mark--img {
    background: transparent;
    padding: 0;
    overflow: hidden;
    border-radius: 50%;
}
.brand__mark--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}
.brand__txt,
.footer__brand {
    font-family: "Poppins", var(--font);
    font-weight: 800;
    letter-spacing: -0.01em;
}
.coupon--empty {
    opacity: 0.55;
    cursor: default;
    font-style: italic;
}
