.logo-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    flex-wrap: wrap
}

.logo-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
    font-weight: 700
}

.vs {
    font-weight: 700;
    letter-spacing: .2px;
    color: #64748b
}

/* ===== Sticky jump bar ===== */
.jumpbar {
    position: sticky;
    top: 0;
    z-index: 15;
    background: #fff;
    border-bottom: 1px solid var(--border);
    backdrop-filter: saturate(1.1) blur(3px);
    overflow-x: clip;
    /* avoid tiny blur overflow */
}

.jump-wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 10px clamp(12px, 4vw, 50px);
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap
}

.jump {
    appearance: none;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    color: inherit
}

.jump:hover {
    transform: translateY(-1px)
}

.jump.active {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a
}

/* ===== Intro ===== */
.intro {
    padding: clamp(26px, 7vw, 60px) 0;
    border-bottom: 1px solid var(--border)
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(18px, 4vw, 36px);
    align-items: center
}

@media (max-width:900px) {
    .intro-grid {
        grid-template-columns: 1fr
    }
}

.lead-title {
    margin: 0 0 8px;
    font-weight: 700;
    font-size: clamp(36px, 3vw, 72px);
    letter-spacing: -.3px;
    background: linear-gradient(120deg, var(--grad-start), var(--grad-mid), var(--grad-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent
}

.lead-text {
    color: var(--body-muted);
    font-weight: 600;
    margin: 0
}

.intro-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px
}

.ipill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    font-weight: 800
}

.intro-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow)
}

.intro-card h3 {
    margin: 0 0 6px;
    font-weight: 700
}

.intro-card ul {
    margin: 10px 0 0;
    padding: 0 0 0 18px
}

.intro-card li {
    margin: 6px 0;
    color: var(--body-muted);
    font-weight: 600
}

/* ===== Highlight scorecards ===== */
.scores {
    padding: clamp(22px, 6vw, 42px) 0
}

.score-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 2.2vw, 20px)
}

@media (max-width:920px) {
    .score-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:620px) {
    .score-grid {
        grid-template-columns: 1fr
    }
}

.score {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow);
    position: relative;
    isolation: isolate
}

.score::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(120deg, var(--grad-start), var(--grad-mid), var(--grad-end));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: .5
}

.score h3 {
    margin: 0 0 6px;
    font-weight: 700
}

.score p {
    margin: 0;
    color: var(--body-muted);
    font-weight: 600
}

.win {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    font-weight: 700;
    color: #065f46;
    box-shadow: 0 6px 14px rgba(2, 6, 23, .06)
}

/* ===== Descriptions (deep dive) ===== */
.deep {
    padding: clamp(26px, 7vw, 60px) 0;
    border-top: 1px solid var(--border)
}

.deep h2 {
    margin: 0 0 14px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -.3px;
    font-size: clamp(36px, 3vw, 72px);
    background: linear-gradient(120deg, var(--grad-start) 8%, var(--grad-mid) 50%, var(--grad-end) 92%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.deep-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(14px, 2.4vw, 22px)
}

@media (max-width:900px) {
    .deep-grid {
        grid-template-columns: 1fr
    }
}

.brand-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
    position: relative
}

.brand-card .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 6px 10px;
    background: #fff;
    font-weight: 700
}

.brand-card h3 {
    margin: 10px 0 6px;
    font-weight: 700
}

.brand-card p {
    margin: 0;
    color: var(--body-muted);
    font-weight: 600
}

.brand-card ul {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px
}

.brand-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700
}

.chip {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #f8fafc
}

/* ===== Comparison table ===== */
.cmp {
    padding: clamp(24px, 7vw, 64px) 0
}

.cmp h2 {
    margin: 0 0 14px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -.3px;
    font-size: clamp(36px, 3vw, 72px);
    background: linear-gradient(120deg, var(--grad-start) 8%, var(--grad-mid) 50%, var(--grad-end) 92%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.cmp-note {
    max-width: 880px;
    margin: 0 auto 10px;
    color: #64748b;
    text-align: center;
    font-weight: 600
}

.cmp-grid {
    max-width: var(--maxw);
    margin: 0 auto;
    border: 1px solid var(--card-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(2, 6, 23, .06)
}

.cmp-head {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    background: linear-gradient(180deg, #fff, #f8fafc);
    border-bottom: 1px solid #e5e7eb
}

.cmp-head div {
    padding: 12px 14px;
    font-weight: 700
}

.cmp-head .brandcol {
    display: flex;
    align-items: center;
    gap: 10px
}

.cmp-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    border-bottom: 1px dashed #e5e7eb;
    background: #fff
}

.cmp-row:nth-child(odd) {
    background: #fcfcfd
}

.cmp-row>div {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 8px
}

.feat {
    font-weight: 800
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    font-weight: 800
}

.yes,
.maybe,
.no {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700
}

.yes {
    color: var(--yes)
}

.maybe {
    color: var(--maybe)
}

.no {
    color: var(--no)
}

.mark {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid #e5e7eb
}

.mark.y {
    background: #ecfdf5;
    border-color: #a7f3d0
}

.mark.m {
    background: #fff7ed;
    border-color: #fed7aa
}

.mark.n {
    background: #fee2e2;
    border-color: #fecaca
}

/* Tooltips */
.note {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: #0f172a;
    font-size: .8rem;
    cursor: default
}

.note::after {
    content: attr(data-tip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    max-width: 280px;
    background: #0f172a;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 10px;
    padding: 8px 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    box-shadow: 0 12px 24px rgba(2, 6, 23, .24)
}

.note:hover::after {
    opacity: 1
}

/* Mobile cards view for matrix */
@media (max-width:820px) {
    .cmp-grid {
        border: none;
        box-shadow: none
    }

    .cmp-head {
        display: none
    }

    .cmp-row {
        grid-template-columns: 1fr;
        border: 1px solid var(--card-border);
        border-radius: 14px;
        margin-bottom: 10px
    }

    .cmp-row>div {
        padding: 12px 14px
    }

    .m-head {
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: space-between;
        border-bottom: 1px dashed #e5e7eb
    }

    .m-opts {
        display: flex;
        gap: 8px
    }
}

/* ===== Proof strip ===== */
.proof {
    padding: clamp(22px, 6vw, 42px) 0;
    border-top: 1px solid var(--border)
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 2.4vw, 20px)
}

@media (max-width:920px) {
    .proof-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:620px) {
    .proof-grid {
        grid-template-columns: 1fr
    }
}

.proof .card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow)
}

.proof h3 {
    margin: 0 0 6px;
    font-weight: 700
}

.proof p {
    margin: 0;
    color: var(--body-muted);
    font-weight: 600
}

/* ===== FAQ + CTA ===== */
.faq {
    border-top: 1px solid var(--border);
    padding: clamp(24px, 6vw, 56px) 0
}

.faq h2 {
    margin: 0 0 12px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -.3px;
    font-size: clamp(36px, 3vw, 72px);
    background: linear-gradient(120deg, var(--grad-start) 8%, var(--grad-mid) 50%, var(--grad-end) 92%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 10px
}

.q {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: var(--shadow)
}

.q summary {
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px
}

.q summary::-webkit-details-marker {
    display: none
}

.q p {
    margin: 8px 0 0;
    color: var(--body-muted);
    font-weight: 600
}

.cta {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: clamp(24px, 5vw, 48px) 0 0
}

.cta-wrap {
    text-align: center
}

.cta-title {
    margin: 0 0 6px;
    font-weight: 700;
    letter-spacing: -.2px;
    font-size: clamp(36px, 3vw, 72px);
    color: var(--body-text)
}

.cta-sub {
    margin: 0 0 34px;
    color: var(--body-muted);
    font-size: clamp(16px, 2vw, 20px)
}

.cta .btn {
    border-radius: 12px
}


/* ===== Screen Reader Only ===== */
.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ================================
   Comparison Table Responsive Fix
================================= */
/* ===== Matrix ===== */
.matrix {
    padding: clamp(28px, 7vw, 64px) 0
}

.matrix h2 {
    margin: 0 0 14px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -.3px;
    font-size: clamp(36px, 3vw, 72px);
    background: linear-gradient(120deg, var(--grad-start), var(--grad-mid), var(--grad-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent
}

.mnote {
    max-width: 920px;
    margin: 0 auto 12px;
    text-align: center;
    color: #64748b;
    font-weight: 600
}

.alt-scroller {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    box-shadow: 0 12px 26px rgba(2, 6, 23, .06)
}

.alt-table {
    min-width: 980px;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    background: #fff
}

.alt-table thead th {
    position: sticky;
    top: 0;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 700;
    padding: 12px 14px;
    text-align: center;
    z-index: 2
}

.alt-table th:first-child {
    position: sticky;
    left: 0;
    z-index: 3;
    text-align: left
}

.alt-table tbody td,
.alt-table tbody th {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(2, 6, 23, .06);
    text-align: center
}

.alt-table tbody th {
    position: sticky;
    left: 0;
    background: #fff;
    text-align: left;
    font-weight: 700;
    border-right: 1px solid rgba(2, 6, 23, .06);
    z-index: 1
}

.alt-table tbody tr:nth-child(even) td,
.alt-table tbody tr:nth-child(even) th {
    background: #fcfdff
}

.mark {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid #e5e7eb
}

.y {
    background: #ecfdf5;
    border-color: #a7f3d0
}

.m {
    background: #fff7ed;
    border-color: #fed7aa
}

.n {
    background: #fee2e2;
    border-color: #fecaca
}

.hint {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: #0f172a;
    font-size: .8rem;
    cursor: default;
    margin-left: 6px
}

.hint[data-tip] {
    position: relative
}

.hint[data-tip]::after {
    content: attr(data-tip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    max-width: 280px;
    background: #0f172a;
    color: #fff;
    border-radius: 10px;
    padding: 8px 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
    box-shadow: 0 12px 24px rgba(2, 6, 23, .24)
}

.hint:hover::after {
    opacity: 1
}