:root {

  --page-bg: #FFF1E6; --panel-bg: #FFE7D6; --card-bg: #FFFFFF; --card-border: 1px solid #FFD9BE;
  --card-top-bg: #3B1E4E; --card-top-border: 1px solid #3B1E4E; --card-top-text: #FFF1E6;
  --offer-bg: #FFF1E6; --heading-color: #3B1E4E; --body-text: #5A4457; --muted-text: #7A6277;
  --hairline: #FFD9BE; --header-bg: #FFF1E6; --header-border: 1px solid #FFD9BE;
  --footer-bg: #3B1E4E; --action: #FF5C5C; --action-text: #3B1E4E;
  --btn-bg: #FF5C5C; --btn-text: #3B1E4E; --btn-weight: 700;
  --btn-text-transform: none; --btn-letter-spacing: 0; --btn-radius: 999px; --btn-border: none;
  --radius-sm: 10px; --radius-md: 14px; --radius-lg: 18px;
  --font-display: 'Fredoka', ui-rounded, 'Segoe UI Rounded', sans-serif;
  --font-body: 'Nunito Sans', -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Space Grotesk', 'Courier New', monospace;
  --font-button: var(--font-body);
  --panel-border: 1px solid var(--hairline);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page-bg);
  color: var(--body-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--action); text-decoration-color: currentColor; }
h1, h2, h3 { font-family: var(--font-display); color: var(--heading-color); line-height: 1.15; margin: 0 0 0.6em; }
p { margin: 0 0 1em; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
/* ---------- header / nav ---------- */
.site-header { border-bottom: var(--header-border); background: var(--header-bg); position: relative; z-index: 50; }
.header-inner {
  max-width: 1180px; margin: 0 auto; padding: 0.7rem 1.25rem;
  display: flex; align-items: center; gap: 1rem; min-height: 56px;
}
.brand { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; flex: 0 0 auto; }
.brand-mark { width: 36px; height: 36px; object-fit: contain; flex: none; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--heading-color); white-space: nowrap; }
.brand-name .accent { color: var(--action); }
.nav-toggle { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.nav-btn {
  display: none; margin-left: auto; align-items: center; gap: 0.5rem; cursor: pointer;
  min-height: 44px; padding: 0.4rem 0.6rem; border-radius: var(--radius-sm);
}
.nav-btn .bars { position: relative; width: 22px; height: 2px; background: var(--heading-color); display: block; }
.nav-btn .bars::before, .nav-btn .bars::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--heading-color); }
.nav-btn .bars::before { top: -7px; }
.nav-btn .bars::after { top: 7px; }
.nav-btn .close-text { display: none; }
.nav-toggle:focus-visible + .nav-btn { outline: 2px solid var(--action); outline-offset: 2px; }
.site-nav ul { list-style: none; display: flex; gap: 1.4rem; margin: 0; padding: 0; }
.site-nav a { color: var(--heading-color); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.site-nav a:hover, .site-nav a[aria-current] { color: var(--action); }

@media (max-width: 900px) {
  .nav-btn { display: flex; }
  .site-nav { display: none; width: 100%; order: 3; }
  .nav-toggle:checked ~ .site-nav { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; padding: 0.5rem 0; }
  .site-nav a { display: block; padding: 0.7rem 0.2rem; min-height: 44px; }
  .header-inner { flex-wrap: wrap; }
  .nav-toggle:checked ~ .nav-btn .open-text { display: none; }
  .nav-toggle:checked ~ .nav-btn .close-text { display: inline; }
}

/* ---------- hero ---------- */
.hero { padding: 1.4rem 0 1.1rem; }
.hero-grid { display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 901px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) 320px; }
}
.hero-copy { text-align: left; }
.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  max-width: 34ch;
}
.hero .lede { max-width: 62ch; font-size: 1.05rem; color: var(--body-text); }
.hero .accent { color: var(--action); }

.byline-row {
  display: flex; align-items: center; gap: 0.75rem; margin-top: 0.9rem;
  background: var(--panel-bg); border: var(--panel-border); border-radius: var(--radius-md);
  padding: 0.6rem 0.9rem; flex-wrap: wrap;
}
.byline-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex: none; }
.byline-avatar.initials {
  display: flex; align-items: center; justify-content: center; background: var(--action);
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
}
.byline-id { display: flex; flex-direction: column; line-height: 1.25; }
.byline-name { font-weight: 700; color: var(--heading-color); white-space: nowrap; font-size: 0.92rem; }
.byline-role-long { display: inline; }
.byline-role-short { display: none; }
.byline-role { font-size: 0.8rem; color: var(--muted-text); }
.hero-stats { display: flex; gap: 1rem; margin-left: auto; padding-left: 0.9rem; border-left: 1px solid var(--hairline); }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-family: var(--font-mono); font-size: 0.95rem; color: var(--heading-color); }
.hero-stat span { font-size: 0.72rem; color: var(--muted-text); white-space: nowrap; }

@media (max-width: 700px) {
  .hero { padding: 0.9rem 0 0.7rem; }
  .hero h1 { font-size: clamp(1.35rem, 6.2vw, 1.85rem); margin-bottom: 0.35em; }
  .hero .lede { font-size: 0.92rem; margin-bottom: 0; -webkit-line-clamp: 3; line-clamp: 3; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; }
  .byline-row { padding: 0.45rem 0.6rem; gap: 0.5rem; margin-top: 0.6rem; flex-wrap: nowrap; }
  .byline-avatar { width: 32px; height: 32px; }
  .byline-name { white-space: nowrap; font-size: 0.84rem; }
  .byline-role-long { display: none; }
  .byline-role-short { display: inline; font-size: 0.7rem; }
  .hero-stats { gap: 0.55rem; padding-left: 0.55rem; }
  .hero-stat strong { font-size: 0.8rem; }
  .hero-stat span { font-size: 0.6rem; }
  .ranked-list-section { padding: 0.3rem 0 1.4rem; }
  .ranked-list-section h2 { font-size: 1.25rem; }
  .list-intro { font-size: 0.85rem; margin-bottom: 0.7rem; }
}
@media (max-width: 360px) {
  .byline-row { padding: 0.4rem 0.5rem; gap: 0.4rem; }
  .byline-avatar { width: 28px; height: 28px; }
  .hero-stats { gap: 0.4rem; padding-left: 0.4rem; }
  .hero-stat strong { font-size: 0.74rem; }
  .hero-stat span { font-size: 0.56rem; }
}

.editor-choice {
  display: none; background: var(--panel-bg); border: var(--panel-border);
  border-radius: var(--radius-md); padding: 1.1rem;
}
@media (min-width: 901px) {
  .editor-choice { display: block; }
}
.editor-choice .ec-kicker { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--action); margin-bottom: 0.5rem; }
.editor-choice .ec-logo { height: 34px; width: auto; object-fit: contain; margin-bottom: 0.6rem; }
.editor-choice .ec-offer { font-size: 1.05rem; margin-bottom: 0.7rem; }
.editor-choice .ec-offer strong { color: var(--action); }
.editor-choice .ec-terms { font-size: 0.8rem; color: var(--muted-text); margin-bottom: 0.8rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-family: var(--font-button); font-weight: var(--btn-weight);
  text-transform: var(--btn-text-transform); letter-spacing: var(--btn-letter-spacing);
  background: var(--btn-bg); color: var(--btn-text); border: var(--btn-border, none);
  border-radius: var(--btn-radius); padding: 0.72rem 1.1rem; text-decoration: none;
  min-height: 44px; cursor: pointer; line-height: 1.1;
}
.btn:hover { filter: brightness(1.06); }
.btn-block { width: 100%; }

/* ---------- ranked list: card mode ---------- */
.ranked-list-section { padding: 0.6rem 0 1.6rem; }
.ranked-list-section h2 { max-width: 44ch; }
.list-intro { max-width: 62ch; color: var(--body-text); margin-bottom: 1.1rem; }
.op-list { list-style: none; margin: 0 0 0.9rem; padding: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.op-card {
  display: grid; grid-template-columns: 288px minmax(0, 1fr) 190px; align-items: center;
  gap: 1rem; background: var(--card-bg); border: var(--card-border); border-radius: var(--radius-lg);
  padding: 1rem 1.1rem; position: relative;
}
.op-card.is-top { background: var(--card-top-bg); border: var(--card-top-border); color: var(--card-top-text); }
.op-card.is-top .op-name { color: var(--card-top-text); }
/* .op-offer keeps its own light panel background even inside an inverted top card, so its
   text is pinned back to the light-background palette a few rules down — never to card-top-text. */
.op-badge {
  position: absolute; top: -10px; left: 14px; background: var(--action); color: var(--action-text);
  font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.28rem 0.6rem; border-radius: var(--radius-sm);
}
.op-brand { display: flex; align-items: center; gap: 0.6rem; }
.op-logo-box {
  width: 120px; height: 46px; flex: none; display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: var(--radius-sm); border: var(--panel-border); padding: 0.3rem 0.5rem;
}
.op-logo-box img { max-width: 100%; max-height: 100%; object-fit: contain; }
.op-name { font-weight: 700; color: var(--heading-color); font-size: 0.95rem; line-height: 1.2; }
.op-offer {
  background: var(--offer-bg); border-left: 4px solid var(--action); border-radius: var(--radius-sm);
  padding: 0.55rem 0.75rem;
  /* The offer panel keeps its own light background on every card, including the inverted
     top-pick card. Pin its text colour here rather than letting it inherit .op-card.is-top's
     light "on-dark" colour, which would land light text on this still-light panel. */
  color: var(--body-text);
}
.op-offer-label { font-size: 1rem; color: var(--heading-color); }
.op-offer-label strong { color: var(--action); font-size: 1.08em; }
.op-offer-sub { font-size: 0.78rem; color: var(--muted-text); margin-top: 0.15rem; }
.op-action .btn { width: 100%; }
.op-review-link { display: block; text-align: center; margin-top: 0.4rem; font-size: 0.8rem; }

@media (max-width: 980px) {
  .op-card { grid-template-columns: 240px minmax(0,1fr); grid-template-areas: "brand offer" "action action"; row-gap: 0.6rem; }
  .op-logo-box { width: 96px; height: 40px; }
  .op-brand { grid-area: brand; }
  .op-offer { grid-area: offer; }
  .op-action { grid-area: action; }
}
@media (max-width: 700px) {
  .op-card { grid-template-columns: 1fr; grid-template-areas: "brand" "offer" "action"; padding: 1.15rem 0.9rem 0.95rem; }
  .op-badge { top: -10px; left: 10px; }
  .op-brand { justify-content: center; text-align: center; flex-direction: column; gap: 0.4rem; }
  .op-logo-box { width: 132px; height: 48px; }
  .op-offer { text-align: center; }
  .op-review-link { margin-top: 0.55rem; }
}

/* ---------- ranked list: table mode ---------- */
.op-table-wrap { overflow-x: hidden; }
table.op-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
table.op-table colgroup col.c-rank { width: 15%; }
table.op-table colgroup col.c-op { width: 27%; }
table.op-table colgroup col.c-metric { width: 20%; }
table.op-table colgroup col.c-offer { width: 24%; }
table.op-table colgroup col.c-go { width: 14%; }
table.op-table thead th {
  background: var(--table-head-bg); color: var(--table-head-text); font-family: var(--font-mono);
  text-transform: uppercase; font-size: 0.74rem; letter-spacing: 0.05em; text-align: left;
  padding: 0.65rem 0.75rem; border: var(--table-border);
}
table.op-table tbody td { padding: 0.75rem; border: var(--table-border); vertical-align: middle; background: var(--table-row-bg); }
table.op-table tbody tr.is-top td { background: var(--table-top-bg); }
table.op-table tbody tr:nth-child(even) td { background: var(--table-row-alt-bg, var(--table-row-bg)); }
.op-table .cell-rank { font-family: var(--font-mono); }
/* The flex row lives on an inner span, never on the <td> itself. A table cell switched to
   display:flex stops behaving like a table-cell in some browsers: it no longer stretches to
   the row's height, so it centers within its own shrunk box instead of the shared row height,
   landing a few pixels above the other cells in the same row. Keeping <td class="cell-op"> as
   a plain cell (vertical-align: middle, from the generic td rule) and putting flex on
   .cell-op-inner avoids that entirely. */
.op-table .cell-op { vertical-align: middle; }
.cell-op-inner { display: flex; align-items: center; gap: 0.55rem; flex-wrap: nowrap; }
.op-table .cell-op .op-logo-box { width: 92px; height: 36px; flex: none; }
.op-table .cell-op .op-name { white-space: nowrap; }
.op-table .cell-rank { white-space: nowrap; }
.op-table .cell-offer strong { color: var(--action); }
.op-table .cell-go .btn { width: 100%; }

@media (max-width: 700px) {
  table.op-table, table.op-table thead, table.op-table tbody, table.op-table th, table.op-table td, table.op-table tr { display: block; }
  table.op-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  table.op-table tr {
    background: var(--card-bg); border: var(--card-border); border-radius: var(--radius-lg);
    margin-bottom: 0.85rem; padding: 1.1rem 0.9rem 0.95rem; position: relative;
  }
  table.op-table tr.is-top { background: var(--card-top-bg); border: var(--card-top-border); }
  table.op-table td { border: none; padding: 0.35rem 0; background: transparent !important; text-align: center; }
  table.op-table td::before { content: attr(data-label); display: block; font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; color: var(--muted-text); margin-bottom: 0.15rem; }
  table.op-table .cell-rank { position: absolute; top: -10px; left: 14px; background: var(--action) !important; color: var(--action-text); font-size: 0.68rem; padding: 0.28rem 0.6rem; border-radius: var(--radius-sm); width: auto; }
  table.op-table .cell-rank::before { display: none; }
  table.op-table .cell-op-inner { justify-content: center; flex-direction: column; }
  table.op-table .cell-go .btn { width: 100%; }
}

.list-compliance { font-size: 0.8rem; color: var(--muted-text); max-width: 62ch; }

/* ---------- detailed reviews ---------- */
.review-grid { display: grid; gap: 1rem; margin-top: 1rem; }
@media (min-width: 700px) { .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.review-card {
  background: var(--card-bg); border: var(--card-border); border-radius: var(--radius-lg);
  padding: 1.15rem 1.1rem; position: relative;
}
.review-card.is-top { background: var(--card-top-bg); border: var(--card-top-border); }
.review-head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.7rem; }
.review-logo { width: 96px; height: 40px; flex: none; }
.review-id h3 { font-size: 1.02rem; margin: 0 0 0.2rem; color: var(--heading-color); }
.review-card.is-top .review-id h3 { color: var(--card-top-text); }
/* The bonus line always sits on the review card's own background (not a separate light panel),
   so on an inverted top card it correctly follows card-top-text like the heading beside it. */
.review-bonus { font-size: 0.85rem; font-weight: 700; color: var(--action); }
/* The action colour is tuned for a light background. It is not guaranteed to clear 4.5:1
   against every preset's inverted card-top-bg, so the top card keeps the bonus line on the
   light "on-dark" text colour instead of the action colour. */
.review-card.is-top .review-bonus { color: var(--card-top-text); }
.review-card p { color: var(--body-text); font-size: 0.92rem; margin: 0 0 0.9rem; }
.review-card.is-top p { color: var(--card-top-text); }
.review-foot { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; }
.review-terms { font-size: 0.78rem; color: var(--muted-text); }
.review-card.is-top .review-terms { color: var(--card-top-text); opacity: 0.85; }
@media (max-width: 700px) {
  .review-head { flex-direction: column; text-align: center; }
  .review-foot { flex-direction: column; align-items: stretch; text-align: center; }
  .review-foot .btn { width: 100%; }
}

/* ---------- method / how we rank ---------- */
.method-section { padding: 1.4rem 0; }
.method-section .container > p.lede { max-width: 62ch; margin: 0 auto 1.4rem; text-align: center; }
.method-grid { display: grid; gap: 1rem; justify-content: center; }
@media (min-width: 981px) { .method-grid { grid-template-columns: repeat(4, minmax(0, 240px)); } }
@media (min-width: 561px) and (max-width: 980px) { .method-grid { grid-template-columns: repeat(2, minmax(0, 280px)); } }
@media (max-width: 560px) { .method-grid { grid-template-columns: minmax(0, 1fr); } }
.method-card { background: var(--panel-bg); border: var(--panel-border); border-radius: var(--radius-md); padding: 1.1rem; text-align: left; }
.method-card h3 { font-size: 1.02rem; margin-bottom: 0.4rem; }
.method-card p { font-size: 0.9rem; color: var(--body-text); margin: 0; }
.method-more { text-align: center; margin-top: 1.2rem; }

/* ---------- comparison table (supporting) ---------- */
.compare-wrap { overflow-x: auto; margin: 1.2rem 0; border: var(--panel-border); border-radius: var(--radius-md); }
table.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
table.compare-table th, table.compare-table td { padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--hairline); text-align: left; font-size: 0.88rem; white-space: nowrap; }
table.compare-table thead th { background: var(--panel-bg); font-family: var(--font-mono); text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.04em; }

/* ---------- article ---------- */
.article-section { padding: 1.6rem 0; background: var(--panel-bg); }
.article-grid { display: grid; gap: 2rem; }
.article-head { margin-inline: 0; max-width: 100%; }
@media (min-width: 1100px) {
  .article-grid { grid-template-columns: minmax(0, 1fr) 260px; align-items: start; }
  .article-head { max-width: none; }
}
.article-body { max-width: 68ch; }
.article-body h2 { font-size: 1.5rem; }
.article-body h3 { font-size: 1.15rem; margin-top: 1.6rem; }
.article-body p { color: var(--body-text); }
.article-toc { display: none; }
@media (min-width: 1100px) {
  .article-toc {
    display: block; position: sticky; top: 1.2rem; align-self: start;
    background: var(--card-bg); border: var(--card-border); border-radius: var(--radius-md);
    padding: 1rem; counter-reset: toc;
  }
  .article-toc h2 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.04em; }
  .article-toc ol { list-style: none; margin: 0; padding: 0; }
  .article-toc li { counter-increment: toc; margin-bottom: 0.55rem; font-size: 0.86rem; }
  .article-toc li::before { content: counter(toc) ". "; font-family: var(--font-mono); color: var(--action); }
  .article-toc a { color: var(--body-text); text-decoration: none; }
  .article-toc a:hover { color: var(--action); }
}

/* ---------- FAQ ---------- */
.faq-section { padding: 1.6rem 0 2rem; }
.faq-item {
  background: var(--card-bg); border: var(--card-border); border-radius: var(--radius-md);
  padding: 0.2rem 1rem; margin-bottom: 0.6rem;
}
.faq-item summary { padding: 0.85rem 0; font-weight: 700; color: var(--heading-color); cursor: pointer; list-style: none; position: relative; padding-right: 1.6rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: 0.8rem; font-family: var(--font-mono); color: var(--action); font-size: 1.1rem; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-answer p { color: var(--body-text); padding-bottom: 0.9rem; margin: 0; }

/* ---------- generic page sections ---------- */
.page-section { padding: 2rem 0; }
.page-section h1 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); }
.page-section .lede { max-width: 62ch; color: var(--body-text); }
.info-block { max-width: 68ch; }
.info-block h2 { font-size: 1.25rem; margin-top: 1.6rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--footer-bg); border-top: var(--header-border); padding: 2rem 0 1.2rem; margin-top: 2rem; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-weight: 700; color: var(--heading-color); margin-bottom: 1rem; }
.footer-inner nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; padding: 0; margin: 0 0 1.2rem; }
.footer-inner nav a { color: var(--body-text); text-decoration: none; font-size: 0.9rem; }
.footer-inner nav a:hover { color: var(--action); }
.footer-disclosure { border-top: 1px solid var(--hairline); padding-top: 1rem; }
.footer-disclosure p { font-size: 0.78rem; color: var(--muted-text); max-width: 80ch; }

/* ---------- cookie notice ---------- */
.cookie-toggle { position: fixed; top: 0; left: 0; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.cookie-note-wrap { position: fixed; inset: auto 0 0 0; z-index: 150; }
.cookie-note {
  background: var(--heading-color); color: var(--page-bg); margin: 0 auto; max-width: 1180px;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: space-between;
  padding: 0.85rem 1.25rem; opacity: 0; visibility: hidden;
  animation: cookie-note-in 0.35s ease-out 2s forwards;
}
@keyframes cookie-note-in { from { opacity: 0; visibility: visible; transform: translateY(8px); } to { opacity: 1; visibility: visible; transform: translateY(0); } }
.cookie-note p { margin: 0; font-size: 0.82rem; max-width: 62ch; }
.cookie-note a { color: inherit; text-decoration: underline; }
.cookie-dismiss { background: var(--action); color: var(--action-text); border-radius: var(--btn-radius); padding: 0.55rem 1rem; font-weight: 700; cursor: pointer; min-height: 44px; display: inline-flex; align-items: center; font-size: 0.85rem; }
.cookie-toggle:checked ~ .cookie-note { display: none; }
@media (max-width: 560px) {
  .cookie-note { flex-wrap: nowrap; padding: 0.7rem 0.9rem; font-size: 0.76rem; }
  .cookie-note p { font-size: 0.76rem; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-note { animation: none; transition: none; opacity: 1; visibility: visible; }
  .cookie-note[style] {}
}

/* ---------- back to top ---------- */
.to-top {
  position: fixed; right: 16px; bottom: 16px; width: 42px; height: 42px; border-radius: 50%;
  background: var(--action); display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; z-index: 140; text-decoration: none;
  animation-name: to-top-reveal; animation-timeline: scroll(root); animation-range: 400px 700px; animation-fill-mode: both;
}
.to-top span { width: 10px; height: 10px; border-top: 2px solid var(--action-text); border-left: 2px solid var(--action-text); transform: rotate(45deg) translate(1px, 1px); }
@keyframes to-top-reveal { to { opacity: 1; pointer-events: auto; } }
@supports not (animation-timeline: scroll()) {
  .to-top.is-visible { opacity: 1; pointer-events: auto; }
}
.cookie-toggle:not(:checked) ~ .to-top { bottom: 6.5rem; }
@media (max-width: 560px) {
  .cookie-toggle:not(:checked) ~ .to-top { bottom: 7.6rem; }
}

/* ---------- utility ---------- */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* preset motif overrides */

.site-footer { --heading-color: #FFF1E6; --body-text: #E8D6E6; --muted-text: #C6AFC4; }
.op-card { border-radius: 18px; }
.op-badge { background: #FF5C5C; border-radius: 999px; }
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,194,68,0.5), transparent 70%); z-index: 0; pointer-events: none;
}
