/* Green & Clean - Instant Withdraw Casino Canada
   Design direction: light, minimal, airy. Mint accent on white.
   No JavaScript. All interaction is CSS-only. */

:root {
  /* Colour */
  --bg: #f6faf7;
  --surface: #ffffff;
  --mint: #17b890;
  --mint-strong: #0e8f70; /* text-on-light */
  --ink: #0f2e26;
  --muted: #5b756c;
  --hairline: #e2ece7;
  --mint-tint: #eef8f4;
  --warning: #9a3b2f;
  --focus: #0e8f70;

  /* Typography */
  --font: system-ui, "Segoe UI", Roboto, Arial, sans-serif;
  --step--1: clamp(.78rem, .75rem + .12vw, .84rem);
  --step-0: clamp(1rem, .97rem + .16vw, 1.06rem);
  --step-1: clamp(1.18rem, 1.1rem + .4vw, 1.4rem);
  --step-2: clamp(1.5rem, 1.3rem + .9vw, 2rem);
  --step-3: clamp(2rem, 1.6rem + 2vw, 3.1rem);

  /* Spacing */
  --space-1: .35rem;
  --space-2: .65rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2.25rem;
  --space-6: 3.5rem;
  --container: 72rem;
  --reading: 44rem;

  /* Radius */
  --radius-control: 4px;
  --radius-card: 10px;
  --radius-special: 12px;

  /* Border / shadow */
  --border-thin: 1px solid var(--hairline);
  --shadow-low: 0 4px 16px rgb(15 46 38 / .06);
  --shadow-raised: 0 12px 30px rgb(15 46 38 / .10);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--mint-strong); text-decoration: underline; text-underline-offset: 2px; }
a:hover { text-decoration: none; }

h1, h2, h3, h4 { line-height: 1.2; color: var(--ink); font-weight: 750; }
h1 { font-size: var(--step-3); letter-spacing: -.01em; }
h2 { font-size: var(--step-2); }
h3 { font-size: var(--step-1); }
p { margin: 0 0 var(--space-3); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: .6rem 1rem;
  z-index: 200;
  border-radius: 0 0 var(--radius-control) 0;
}
.skip-link:focus { left: 0; }

/* Layout helpers */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
.section { padding-block: var(--space-6); }
.section--tight { padding-block: var(--space-5); }
/* Tighten only the gap directly under the hero (ranked list section) */
.hero + .section--tight { padding-top: var(--space-2); }

/* ---------- Brand mark (CSS leaf + checkmark) ---------- */
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px 3px 9px 3px;
  background: var(--mint);
  position: relative;
  flex: none;
}
.brand-mark::before { /* leaf vein */
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  width: 2px;
  height: 20px;
  background: rgb(255 255 255 / .55);
  transform: translateX(-50%) rotate(-20deg);
  transform-origin: bottom;
}
.brand-mark::after { /* checkmark */
  content: "";
  position: absolute;
  left: 8px;
  top: 13px;
  width: 12px;
  height: 6px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(246 250 247 / .92);
  backdrop-filter: saturate(1.1) blur(6px);
  border-bottom: var(--border-thin);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: 60px;
  padding-block: var(--space-2);
}
.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.01em;
}
.brand:hover { text-decoration: none; }
.brand span.amp { color: var(--mint-strong); }

/* Desktop nav */
.site-nav ul {
  list-style: none;
  display: flex;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
}
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  padding: .5rem .2rem;
  display: inline-block;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { border-bottom-color: var(--mint); color: var(--mint-strong); }

/* Hamburger (CSS-only) */
.nav-toggle {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.nav-btn {
  display: none;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  border: var(--border-thin);
  background: var(--surface);
  border-radius: var(--radius-control);
  padding: .55rem .8rem;
  font-weight: 600;
  font-size: .9rem;
  min-height: 44px;
  color: var(--ink);
}
.nav-btn .bars {
  position: relative;
  width: 18px; height: 2px;
  background: var(--ink);
  display: inline-block;
}
.nav-btn .bars::before,
.nav-btn .bars::after {
  content: "";
  position: absolute;
  left: 0; width: 18px; height: 2px;
  background: var(--ink);
}
.nav-btn .bars::before { top: -6px; }
.nav-btn .bars::after { top: 6px; }
.nav-btn .label-close { display: none; }
.nav-toggle:checked ~ .nav-btn .label-open { display: none; }
.nav-toggle:checked ~ .nav-btn .label-close { display: inline; }
.nav-toggle:focus-visible ~ .nav-btn {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* ---------- Hero ---------- */
.hero { padding-top: var(--space-3); padding-bottom: var(--space-2); }
.hero-grid { display: block; }
.hero-copy { text-align: left; max-width: 40rem; }
.hero h1 {
  margin: 0 0 var(--space-2);
  line-height: 1.12;
  font-size: clamp(1.5rem, 1.2rem + 1.6vw, 2.3rem);
}
.hero-lead { font-size: var(--step-0); color: var(--ink); line-height: 1.4; margin-bottom: var(--space-2); }
.eyebrow { display: none; }

/* Hero read-more */
.hero-more { display: none; }
.hero-more-toggle {
  position: fixed; top: 0; left: 0;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0; margin: -1px; padding: 0;
}
.hero-more-label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  cursor: pointer;
  color: var(--mint-strong);
  font-weight: 600;
  min-height: 44px;
  user-select: none;
}
.hero-more-label .lbl-less { display: none; }
.hero-more-label::after {
  content: "";
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
  margin-top: -3px;
}
.hero-more-toggle:checked ~ .hero-more { display: block; }
.hero-more-toggle:checked ~ .hero-more-label .lbl-more { display: none; }
.hero-more-toggle:checked ~ .hero-more-label .lbl-less { display: inline; }
.hero-more-toggle:checked ~ .hero-more-label::after { transform: rotate(-135deg); }
.hero-more-toggle:focus-visible ~ .hero-more-label {
  outline: 3px solid var(--focus); outline-offset: 3px;
}

/* Editor's choice box */
.editor-choice {
  background: var(--mint-tint);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-special);
  padding: var(--space-3);
}
.editor-choice .ec-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mint-strong);
  background: #fff;
  border: 1px solid var(--hairline);
  padding: .25rem .5rem;
  border-radius: var(--radius-control);
  margin-bottom: var(--space-2);
}
.editor-choice h2 { font-size: var(--step-1); margin: 0 0 .3rem; }
.editor-choice .ec-name { font-size: 1.3rem; font-weight: 800; margin: 0 0 .3rem; }
.editor-choice .ec-offer {
  border-left: 3px solid var(--mint);
  background: #fff;
  padding: .6rem .8rem;
  border-radius: 0 var(--radius-control) var(--radius-control) 0;
  margin: var(--space-2) 0;
}
.editor-choice .ec-offer strong { color: var(--mint-strong); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-align: center;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  padding: .7rem 1.1rem;
  border-radius: var(--radius-control);
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 44px;
  line-height: 1.5;
}
.btn-primary { background: var(--mint); color: #06231b; }
.btn-primary:hover { background: var(--mint-strong); color: #fff; text-decoration: none; }
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--hairline);
}
.btn-ghost:hover { border-color: var(--mint); color: var(--mint-strong); text-decoration: none; }

/* ---------- Reviewer byline ---------- */
.byline {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: var(--surface);
  border: var(--border-thin);
  border-radius: var(--radius-card);
  padding: .55rem .9rem;
  margin-top: var(--space-2);
  max-width: 40rem;
}
.byline .avatar {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 50%;
  background: var(--mint-tint);
  color: var(--mint-strong);
  display: grid;
  place-items: center;
  font-weight: 800;
  border: 1px solid var(--hairline);
  object-fit: cover;
}
.byline .who { display: flex; flex-direction: column; min-width: 0; }
.byline .who .name { font-weight: 700; white-space: nowrap; }
.byline .who .role {
  color: var(--muted);
  font-size: var(--step--1);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.byline .who .role-short { display: none; }
.byline .meta {
  margin-left: auto;
  padding-left: .9rem;
  border-left: 1px solid var(--hairline);
  color: var(--muted);
  font-size: var(--step--1);
  white-space: nowrap;
}

/* ---------- Ranked operator list ---------- */
.rank-head { margin-bottom: var(--space-3); }
.op-list { display: flex; flex-direction: column; gap: var(--space-3); }

.op-card {
  display: grid;
  grid-template-columns: 42px 15rem minmax(0, 1fr) 10.5rem;
  align-items: center;
  gap: var(--space-3);
  background: var(--surface);
  border: var(--border-thin);
  border-radius: var(--radius-card);
  padding: var(--space-3) var(--space-4);
}
.op-rank {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--mint-strong);
  text-align: center;
}
.op-id { display: flex; align-items: center; gap: .7rem; min-width: 0; }
.op-tile {
  width: 46px; height: 46px;
  flex: none;
  border-radius: var(--radius-control);
  background: #fff;
  border: 1px solid var(--hairline);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--mint-strong);
  font-size: 1.15rem;
  overflow: hidden;
}
.op-tile img { max-width: 80%; max-height: 80%; object-fit: contain; }
.op-name { font-weight: 700; font-size: 1.08rem; }
.op-name .op-badge {
  display: inline-block;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--mint-strong);
  background: var(--mint-tint);
  border: 1px solid var(--hairline);
  padding: .1rem .4rem;
  border-radius: 3px;
  margin-left: .4rem;
  vertical-align: middle;
}
.op-offer {
  border-left: 3px solid var(--mint);
  background: var(--mint-tint);
  padding: .55rem .8rem;
  border-radius: 0 var(--radius-control) var(--radius-control) 0;
  font-size: 1.02rem;
}
.op-offer strong { color: var(--mint-strong); }
.op-offer .neutral { color: var(--muted); font-weight: 600; }
.op-cta { width: 100%; }

/* Featured card */
.op-card--featured {
  background: linear-gradient(180deg, var(--mint-tint), var(--surface) 70%);
  border-color: #cfe9df;
  box-shadow: var(--shadow-low);
}
.op-card--featured .op-rank { font-size: 1.6rem; }
.op-card--featured .op-name { font-size: 1.18rem; }
.op-card--featured .op-offer { font-size: 1.08rem; }

/* Compliance line */
.list-note {
  margin-top: var(--space-3);
  font-size: var(--step--1);
  color: var(--muted);
}

/* ---------- Compare table ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-card); border: var(--border-thin); }
table.data {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: var(--surface);
}
table.data caption {
  text-align: left;
  padding: .7rem 1rem;
  background: var(--mint-tint);
  color: var(--mint-strong);
  font-weight: 700;
  font-size: var(--step--1);
}
table.data th, table.data td {
  padding: .7rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--hairline);
  font-size: .95rem;
}
table.data thead th {
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  border-bottom: 2px solid var(--mint);
}
table.data tbody tr:nth-child(even) { background: var(--mint-tint); }
table.data tbody tr:hover { background: #e3f3ec; }

/* ---------- Method grid ---------- */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.method-card {
  background: var(--surface);
  border: var(--border-thin);
  border-radius: var(--radius-card);
  padding: var(--space-4);
}
.method-card .num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--mint-tint);
  color: var(--mint-strong);
  font-weight: 800;
  display: grid; place-items: center;
  margin-bottom: var(--space-2);
}
.method-card h3 { font-size: 1.05rem; margin: 0 0 .3rem; }
.method-card p { margin: 0; font-size: .93rem; color: var(--muted); }

/* Two-panel compare */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.panel {
  background: var(--surface);
  border: var(--border-thin);
  border-radius: var(--radius-card);
  padding: var(--space-4);
}
.panel h3 { margin-top: 0; }
.panel ul { margin: 0; padding-left: 1.1rem; }
.panel li { margin-bottom: .4rem; }
.panel--up { border-top: 3px solid var(--mint); }
.panel--down { border-top: 3px solid var(--warning); }

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.stat {
  background: var(--surface);
  border: var(--border-thin);
  border-radius: var(--radius-card);
  padding: var(--space-3);
  text-align: center;
}
.stat .big { font-size: 1.5rem; font-weight: 800; color: var(--mint-strong); }
.stat .cap { font-size: var(--step--1); color: var(--muted); }

/* ---------- Panels / callouts ---------- */
.callout {
  background: var(--surface);
  border: var(--border-thin);
  border-left: 3px solid var(--mint);
  border-radius: var(--radius-card);
  padding: var(--space-4);
}
.safe-panel {
  background: var(--mint-tint);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-special);
  padding: var(--space-4) var(--space-5);
}
.safe-panel h2 { margin-top: 0; }

/* ---------- Article + sidebar ---------- */
.article-wrap { display: block; }
.article-head { margin-inline: 0; }
.article-body { max-width: var(--reading); }
.article-body h2 { margin-top: var(--space-5); scroll-margin-top: 80px; }
.article-body h3 { margin-top: var(--space-4); }
.article-body ol.sections { counter-reset: sec; list-style: none; padding: 0; }
.toc { display: none; }

/* ---------- In-depth reviews ---------- */
.review-list { display: grid; gap: var(--space-4); margin-top: var(--space-4); }
.review-card {
  background: var(--surface);
  border: var(--border-thin);
  border-radius: var(--radius-card);
  padding: var(--space-4) var(--space-5);
}
.review-card h3 { scroll-margin-top: 80px; margin-top: 0; display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap; }
.review-meta { color: var(--muted); font-size: var(--step--1); margin-bottom: var(--space-3); }
.review-card .btn { margin-top: var(--space-1); }

/* ---------- FAQ ---------- */
.faq details {
  background: var(--surface);
  border: var(--border-thin);
  border-radius: var(--radius-card);
  padding: 0;
  margin-bottom: var(--space-2);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: var(--space-3) var(--space-4);
  list-style: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 9px; height: 9px;
  border-right: 2px solid var(--mint-strong);
  border-bottom: 2px solid var(--mint-strong);
  transform: rotate(45deg);
  flex: none;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details > p { padding: 0 var(--space-4) var(--space-3); margin: 0; color: var(--muted); }

/* ---------- Generic page content ---------- */
.page-title { padding-top: var(--space-5); padding-bottom: var(--space-2); }
.prose { max-width: var(--reading); }
.prose h2 { margin-top: var(--space-5); }
.prose h3 { margin-top: var(--space-4); }
.prose ul, .prose ol { padding-left: 1.2rem; }
.prose li { margin-bottom: .4rem; }
.lede { font-size: var(--step-1); color: var(--ink); }

/* Definition-style list */
dl.defs dt { font-weight: 700; margin-top: var(--space-3); }
dl.defs dd { margin: 0 0 var(--space-2); color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--surface);
  border-top: var(--border-thin);
  margin-top: var(--space-6);
  padding-block: var(--space-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-5);
}
.footer-brand .brand { margin-bottom: var(--space-2); }
.footer-col h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin: 0 0 var(--space-2);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .45rem; }
.footer-col a { color: var(--ink); text-decoration: none; font-size: .95rem; }
.footer-col a:hover { color: var(--mint-strong); text-decoration: underline; }
.footer-bottom {
  border-top: var(--border-thin);
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  color: var(--muted);
  font-size: var(--step--1);
}
.footer-bottom .age {
  display: inline-block;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  width: 30px; height: 30px;
  line-height: 28px;
  text-align: center;
  font-weight: 800;
  color: var(--warning);
  margin-right: .5rem;
  vertical-align: middle;
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 16px; bottom: 16px;
  width: 44px; height: 44px;
  background: var(--ink);
  border-radius: var(--radius-control);
  display: grid; place-items: center;
  z-index: 90;
  text-decoration: none;
}
.to-top::after {
  content: "";
  width: 10px; height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: 3px;
}
@supports (animation-timeline: scroll()) {
  .to-top {
    opacity: 0;
    animation: to-top-in .3s linear both;
    animation-timeline: scroll(root);
    animation-range: 300px 600px;
  }
}
@keyframes to-top-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- Cookie notice ---------- */
.cookie-toggle {
  position: fixed; top: 0; left: 0;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0; margin: -1px; padding: 0;
}
.cookie-note {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  background: var(--ink);
  color: #fff;
  padding: .8rem var(--space-4);
  opacity: 0;
  visibility: hidden;
  animation: cookie-note-in .35s ease-out 2s forwards;
}
@keyframes cookie-note-in {
  from { opacity: 0; visibility: visible; transform: translateY(12px); }
  to { opacity: 1; visibility: visible; transform: translateY(0); }
}
.cookie-inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.cookie-inner p { margin: 0; font-size: .9rem; }
.cookie-inner a { color: #bff0e0; }
.cookie-dismiss {
  margin-left: auto;
  flex: none;
  background: var(--mint);
  color: #06231b;
  border: 0;
  border-radius: var(--radius-control);
  padding: .5rem 1rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 44px;
}
.cookie-toggle:checked ~ .cookie-note { display: none; }
/* Lift back-to-top while notice is up */
.cookie-toggle:not(:checked) ~ .to-top { bottom: 6.5rem; }

/* ================= Responsive ================= */

/* Desktop hero two-column + editor choice */
@media (min-width: 901px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: var(--space-5);
    align-items: start;
  }
  .article-wrap {
    display: block;
  }
}

/* Keep the stacked mobile hero short: the editor's-choice box repeats the
   featured operator already shown at the top of the ranked list just below,
   so it is hidden on narrow, single-column layouts only. */
@media (max-width: 900px) {
  .editor-choice { display: none; }
}

/* Article two-column with sticky TOC */
@media (min-width: 1100px) {
  .article-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 16rem;
    gap: var(--space-5);
    align-items: start;
  }
  .article-head { max-width: var(--reading); }
  .toc {
    display: block;
    position: sticky;
    top: 76px;
    align-self: start;
    background: var(--surface);
    border: var(--border-thin);
    border-radius: var(--radius-card);
    padding: var(--space-4);
    font-size: .9rem;
  }
  .toc h2 { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 0 0 var(--space-2); }
  .toc ol { counter-reset: toc; list-style: none; margin: 0; padding: 0; }
  .toc li { counter-increment: toc; margin-bottom: .4rem; }
  .toc a { color: var(--ink); text-decoration: none; display: flex; gap: .5rem; }
  .toc a::before { content: counter(toc) "."; color: var(--mint-strong); font-weight: 700; }
  .toc a:hover { color: var(--mint-strong); }
}

/* Hamburger below 900 */
@media (max-width: 900px) {
  .nav-btn { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: var(--surface);
    border-bottom: var(--border-thin);
    box-shadow: var(--shadow-low);
  }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
  .nav-toggle:checked ~ .site-nav { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; padding: var(--space-2) var(--space-4); }
  .site-nav a {
    display: block;
    padding: .8rem 0;
    min-height: 44px;
    border-bottom: 1px solid var(--hairline);
  }
  .site-nav a:hover,
  .site-nav a[aria-current="page"] { border-bottom-color: var(--hairline); }
  .site-nav li:last-child a { border-bottom: 0; }
}

/* Method grid steps */
@media (max-width: 980px) {
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  /* Cards fold: CTA on its own row */
  .op-card {
    grid-template-columns: 42px 1fr;
    grid-template-areas:
      "rank id"
      "offer offer"
      "cta cta";
    row-gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
  }
  .op-rank { grid-area: rank; text-align: left; }
  .op-id { grid-area: id; }
  .op-offer { grid-area: offer; }
  .op-cta { grid-area: cta; }
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .method-grid { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .op-card {
    grid-template-columns: 36px 1fr;
  }
  .byline .who .role-long { display: none; }
  .byline .who .role-short { display: block; }
  .rank-head { margin-bottom: var(--space-2); }
  .op-list { gap: var(--space-2); }
}

@media (max-width: 560px) {
  .cookie-inner { flex-wrap: nowrap; }
  .cookie-inner p { font-size: .76rem; }
  .cookie-toggle:not(:checked) ~ .to-top { bottom: 7.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 360px) {
  .container { padding-inline: var(--space-3); }
  .byline { gap: .6rem; padding: .6rem; }
  .byline .avatar { width: 38px; height: 38px; }
  .byline .meta { padding-left: .6rem; }
  .op-tile { width: 40px; height: 40px; font-size: 1rem; }
}

@media (max-width: 340px) {
  .brand { flex-wrap: wrap; font-size: 1rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .cookie-note { animation: none; opacity: 1; visibility: visible; transform: none; }
  @supports (animation-timeline: scroll()) {
    .to-top { opacity: 1; animation: none; }
  }
}
