@media (max-width: 768px) {
  main table { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
:root {
    --brand-bg: #f5f6f7;
    --brand-bg-alt: #ffffff;
    --brand-text: #14181c;
    --brand-muted: #667080;
    --brand-accent: #c0143c;
    --brand-card: #ffffff;
    --brand-card-border: #e6e8ea;
    --brand-cta: #2b8a46;
    --brand-cta-hover: #22743a;
    --brand-star: #2b8a46;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Anyone who asked their OS for less motion should not get a smooth-scrolled page. */
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
    margin: 0;
    background: var(--brand-bg);
    color: var(--brand-text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: var(--brand-bg-alt);
    border-bottom: 1px solid var(--brand-card-border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 68px; }
.header-brand { display: flex; align-items: center; gap: .6rem; }
.header-logo { width: 80px; height: 40px; object-fit: cover; }
.header-name { font-weight: 700; font-size: 1rem; }
.header-nav { display: flex; align-items: center; gap: 1.6rem; }
.header-nav a { font-size: .9rem; color: var(--brand-muted); transition: color .15s; }
.header-nav a:hover { color: var(--brand-text); }

@media (max-width: 560px) {
    .header-inner { gap: .75rem; }
    .header-name { display: none; }
    .header-nav { gap: 1rem; }
    .header-nav a { font-size: .82rem; }
}

/* Footer */
.site-footer { background: var(--brand-bg-alt); border-top: 1px solid var(--brand-card-border); padding: 2.5rem 0; margin-top: 3rem; }
.footer-text { font-size: .85rem; color: var(--brand-muted); line-height: 1.6; margin-bottom: 1.5rem; }
.footer-text p { margin: .3rem 0; }
.footer-copy { font-size: .8rem; color: var(--brand-muted); border-top: 1px solid var(--brand-card-border); padding-top: 1rem; }

/* Page chrome — shared by the home page and every inner page, so it lives in the
   layout rather than in one page's stylesheet. */
.page { padding: 2rem 0 1rem; }
.page-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-bottom: 1.1rem; border-bottom: 1px solid var(--brand-card-border); }
.page-title { font-size: 2rem; font-weight: 800; line-height: 1.2; margin: 0; }
.page-date { flex-shrink: 0; font-size: .82rem; font-weight: 600; color: var(--brand-accent); border: 1px solid var(--brand-accent); border-radius: 999px; padding: .35rem 1rem; white-space: nowrap; }
.page-intro { margin: 1.5rem 0 2rem; color: var(--brand-muted); }
.page-intro p:last-child { margin-bottom: 0; }
.page-body { margin-top: 40px; }
/* Clears the 68px sticky header, or an anchor jump lands with the heading hidden
   underneath it. */
.sec-title { font-size: 1.5rem; font-weight: 700; line-height: 1.3; margin: 2.5rem 0 1.25rem; padding-left: .85rem; border-left: 4px solid var(--brand-accent); scroll-margin-top: 88px; }

@media (max-width: 900px) {
    .page-title { font-size: 1.6rem; }
}

/* Prose — the long-form body */
.prose { font-size: 1rem; }
.prose > *:first-child { margin-top: 0; }
.prose h2 {
    font-size: 1.5rem; font-weight: 700; line-height: 1.3;
    margin: 2.5rem 0 1rem; padding-left: .85rem;
    border-left: 4px solid var(--brand-accent);
}
.prose h3 { font-size: 1.15rem; font-weight: 700; margin: 1.8rem 0 .6rem; }
.prose h4 { font-size: 1rem; font-weight: 700; margin: 1.4rem 0 .5rem; }
.prose p { margin: 0 0 1rem; }
.prose a { color: var(--brand-accent); text-decoration: underline; text-underline-offset: 2px; }
.prose ul, .prose ol { margin: 0 0 1.25rem; padding-left: 1.4rem; }
.prose li { margin: .35rem 0; }
.prose ul li::marker { color: var(--brand-cta); }
.prose strong { font-weight: 700; }
.prose hr { border: 0; border-top: 1px solid var(--brand-card-border); margin: 2rem 0; }
.prose img { border-radius: .6rem; margin: 1.25rem 0; }
.prose table {
    width: 100%; border-collapse: collapse; margin: 0 0 1.5rem;
    font-size: .92rem; background: var(--brand-card);
    border: 1px solid var(--brand-card-border); border-radius: .6rem; overflow: hidden;
}
.prose thead th { background: var(--brand-bg); font-weight: 700; text-align: left; }
.prose th, .prose td { padding: .7rem .9rem; border-bottom: 1px solid var(--brand-card-border); vertical-align: top; }
.prose tbody tr:last-child td { border-bottom: 0; }

/* Tables have to scroll on a phone rather than stretch the page */
.prose .table-scroll { overflow-x: auto; }
/* Offer list */
.olist { display: flex; flex-direction: column; gap: .85rem; }
.ocard {
    display: grid;
    grid-template-columns: 150px 1fr auto auto;
    align-items: center;
    gap: 1.25rem;
    background: var(--brand-card);
    border: 1px solid transparent;
    border-radius: .9rem;
    padding: 1.2rem 1.5rem;
    /* Lifted off the page rather than outlined — the border is a fallback for
       high-contrast modes where shadows are dropped. */
    box-shadow: 0 1px 2px rgba(20, 24, 28, .05), 0 6px 18px rgba(20, 24, 28, .05);
    transition: box-shadow .18s, transform .18s;
}
.ocard:hover { box-shadow: 0 2px 4px rgba(20, 24, 28, .07), 0 12px 26px rgba(20, 24, 28, .09); }
/* The top pick is the one thing on the page that earns a highlight. */
.ocard.is-top { border-color: var(--brand-cta); box-shadow: 0 0 0 4px rgba(43, 138, 70, .12), 0 8px 24px rgba(43, 138, 70, .14); }

.ologo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
}
.ologo img {
    display: block;
    width: 128px;
    height: 64px;
    max-width: none;
    object-fit: cover;
}
.ologo-fallback { font-weight: 700; font-size: .9rem; text-align: center; }

.oinfo { min-width: 0; }
.oeyebrow { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-bottom: .25rem; }
.oeyebrow-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brand-muted); }
.obonus { font-size: 1.1rem; font-weight: 700; line-height: 1.35; }
.opro { display: flex; align-items: center; gap: .35rem; font-size: .8rem; color: var(--brand-muted); margin-top: .3rem; }
.opro-tick { color: var(--brand-cta); font-weight: 700; }

.oscore { flex-shrink: 0; white-space: nowrap; }
.oscore-num { font-size: 1.6rem; font-weight: 800; color: var(--brand-cta); }
.oscore-den { font-size: .8rem; color: var(--brand-muted); }

.octa {
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--brand-cta); color: #fff;
    font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em;
    padding: .85rem 2rem; border-radius: 999px;
    box-shadow: 0 4px 14px rgba(43, 138, 70, .35);
    transition: background .15s, box-shadow .18s, transform .18s;
    white-space: nowrap;
}
.octa:hover { background: var(--brand-cta-hover); box-shadow: 0 6px 20px rgba(43, 138, 70, .45); transform: translateY(-1px); }

@media (max-width: 900px) {
    .ocard { grid-template-columns: 110px 1fr; grid-template-areas: 'logo info' 'score cta'; row-gap: .9rem; }
    .ologo { grid-area: logo; }
    .ologo img { width: 104px; height: 52px; }
    .oinfo { grid-area: info; }
    .oscore { grid-area: score; justify-self: center; }
    .octa { grid-area: cta; }
}

@media (max-width: 560px) {
    .ocard {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: .85rem;
        padding: 1rem;
    }
    .ologo { min-height: 44px; }
    .ologo img { width: 88px; height: 44px; }
    .obonus { font-size: 1rem; }
    .oscore { justify-self: start; }
    .octa { width: 100%; padding-inline: 1rem; }
}

/* FAQ */
.faq { display: flex; flex-direction: column; gap: .6rem; }
.faq-item { background: var(--brand-card); border: 1px solid var(--brand-card-border); border-radius: .6rem; padding: 0 1.1rem; }
.faq-q { cursor: pointer; font-weight: 600; padding: .95rem 0; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; color: var(--brand-accent); font-size: 1.3rem; font-weight: 400; line-height: 1; flex-shrink: 0; }
.faq-item[open] .faq-q::after { content: '\2212'; }
.faq-a { padding: 0 0 1rem; color: var(--brand-muted); font-size: .93rem; }
