/* HonestQuid — site styles v2 */

:root {
  --ink: #0a1628;
  --ink-2: #122740;
  --ink-3: #1c3a5e;
  --body: #34424f;
  --muted: #67737f;
  --line: #e7e5dd;
  --bg: #f7f6f1;
  --card: #ffffff;
  --green: #0e9f6e;
  --green-dark: #0a7d57;
  --green-deep: #075c40;
  --green-soft: #e4f5ed;
  --amber: #f5b83d;
  --amber-soft: #fdf3dd;
  --amber-text: #7d5700;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(10, 22, 40, 0.04), 0 8px 28px rgba(10, 22, 40, 0.07);
  --shadow-lift: 0 2px 4px rgba(10, 22, 40, 0.06), 0 14px 40px rgba(10, 22, 40, 0.12);
  --font-display: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--font-display); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo .coin {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(145deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1rem; font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 2px 6px rgba(7, 92, 64, 0.35);
}
.logo .quid { color: var(--green-dark); }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--ink); text-decoration: none; }
.main-nav a.nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  transition: background 0.15s ease;
}
.main-nav a.nav-cta:hover { background: var(--green-dark); }

.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: 5px 0; border-radius: 2px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(700px 400px at 85% -10%, rgba(14, 159, 110, 0.25), transparent 60%),
    radial-gradient(500px 350px at -5% 110%, rgba(245, 184, 61, 0.14), transparent 55%),
    linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 55%, var(--ink-3) 100%);
  color: #e9eef4;
  padding: 84px 0 76px;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7fd7b2;
  margin-bottom: 18px;
}
.hero-kicker::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: #38d996;
  box-shadow: 0 0 0 4px rgba(56, 217, 150, 0.2);
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.07;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #fff;
}
.hero h1 .hl { color: #48d795; }

.hero .sub {
  margin: 20px 0 32px;
  font-size: 1.13rem;
  max-width: 520px;
  color: #b6c4d2;
}

.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--green-dark); text-decoration: none; transform: translateY(-1px); }
.btn.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  margin-left: 10px;
}
.btn.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn.btn-small { padding: 10px 20px; font-size: 0.9rem; }
.btn.btn-dark { background: var(--ink); }
.btn.btn-dark:hover { background: var(--ink-3); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 36px;
  font-size: 0.88rem;
  color: #9db0c1;
}
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.hero-trust .tick { color: #48d795; font-weight: 800; }

/* Hero card stack */

.hero-visual { position: relative; min-height: 320px; }
.mini-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: 20px 22px;
  width: min(300px, 84%);
  color: var(--body);
}
.mini-card .mini-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.mini-card h4 { font-size: 0.98rem; color: var(--ink); letter-spacing: -0.01em; }
.mini-card .mini-cat { font-size: 0.72rem; color: var(--muted); }
.mini-card .mini-amount {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}
.mini-card .mini-req { font-size: 0.8rem; color: var(--muted); margin-top: 6px; }
.mini-card.card-a { top: 6%; right: 8%; transform: rotate(2.5deg); z-index: 2; }
.mini-card.card-b { bottom: 4%; right: 26%; transform: rotate(-3deg); }
.verified-sticker {
  position: absolute;
  top: -4%; right: 2%;
  z-index: 3;
  background: var(--amber);
  color: #503700;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 8px 14px;
  border-radius: 999px;
  transform: rotate(6deg);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* ---------- Monogram tiles ---------- */

.mono {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22);
}
.mono.sm { width: 34px; height: 34px; border-radius: 10px; font-size: 0.8rem; }
.mono-hsbc { background: #db0011; }
.mono-coop { background: #0077b3; }
.mono-natwest { background: #5a287d; }
.mono-barclays { background: #00aeef; }
.mono-santander { background: #ec0000; }
.mono-firstdirect { background: #1b1b1b; }
.mono-nationwide { background: #1b3e93; }
.mono-octopus { background: #e14ce8; }
.mono-tcb { background: #009e8e; }
.mono-quidco { background: #e5004d; }
.mono-score { background: #1d4f91; }
.mono-snoop { background: #ff5a36; }
.mono-tide { background: #5c33cf; }
.mono-yougov { background: #7b2d82; }
.mono-attapoll { background: #2d7ff9; }
.mono-starling { background: #274b6d; }
.mono-monzo { background: #ff4f40; }
.mono-chase { background: #117aca; }
.mono-airtime { background: #e5197e; }
.mono-giffgaff { background: #101010; }
.mono-gov { background: #00703c; }
.mono-prolific { background: #2c5ef6; }
.mono-ut { background: #0f7b6c; }

/* ---------- Stats band ---------- */

.stats-band { background: var(--bg); padding: 34px 0; border-bottom: 1px solid var(--line); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat { text-align: center; padding: 10px 6px; }
.stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.stat .stat-num .accent { color: var(--green-dark); }
.stat .stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 2px; }

/* ---------- Sections ---------- */

.section { padding: 72px 0; }
.section.alt { background: #fdfcf9; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section.dark {
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #dbe4ec;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
}
.section-head .head-copy { max-width: 620px; }
.section-head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.15rem);
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-weight: 800;
}
.section.dark .section-head h2 { color: #fff; }
.section-head p { margin-top: 10px; color: var(--muted); }
.section-head .head-link { flex-shrink: 0; font-weight: 700; font-size: 0.95rem; white-space: nowrap; }

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.section.dark .kicker { color: #48d795; }

/* ---------- Offer cards ---------- */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 20px;
}

.offer-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.offer-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.pick-badge {
  position: absolute;
  top: -11px; right: 16px;
  background: var(--amber);
  color: #503700;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(245, 184, 61, 0.45);
}

.offer-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.offer-head .offer-title { min-width: 0; }
.offer-card h3 {
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-weight: 800;
  line-height: 1.25;
}
.offer-cat {
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.offer-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--green-dark);
  line-height: 1.05;
}
.offer-amount .amount-note {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--muted);
  margin-top: 7px;
}

.offer-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.meta-chip {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--body);
  background: #f1efe8;
  border-radius: 999px;
  padding: 5px 12px;
  white-space: nowrap;
}
.meta-chip strong { color: var(--ink); font-weight: 700; }

.offer-req { font-size: 0.93rem; color: var(--body); }

.offer-card details { font-size: 0.9rem; color: var(--muted); }
.offer-card summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--green-dark);
  list-style: none;
  font-size: 0.88rem;
}
.offer-card summary::-webkit-details-marker { display: none; }
.offer-card summary::after { content: " +"; }
.offer-card details[open] summary::after { content: " –"; }
.offer-card details ul { margin: 10px 0 0 18px; display: grid; gap: 6px; }

.offer-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 6px;
}

.checked {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--green-deep);
  background: var(--green-soft);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.checked::before { content: "✓"; font-weight: 800; }

/* ---------- How we verify ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.section.dark .step {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}
.step .num {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-family: var(--font-display);
  font-weight: 800;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.section.dark .step .num { background: rgba(72, 215, 149, 0.16); color: #48d795; }
.step h3 { color: var(--ink); font-size: 1.05rem; margin-bottom: 8px; font-weight: 800; }
.section.dark .step h3 { color: #fff; }
.step p { font-size: 0.93rem; color: var(--muted); }
.section.dark .step p { color: #a9bac9; }

/* ---------- Editor's note ---------- */

.editor-note {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 38px;
  max-width: 780px;
  margin: 0 auto;
}
.editor-note .note-kicker {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.editor-note p { font-size: 1.05rem; color: var(--body); margin-bottom: 14px; }
.editor-note p:last-of-type { margin-bottom: 0; }
.editor-note .sign {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
}

/* ---------- Guide cards ---------- */

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.guide-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}
.guide-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); text-decoration: none; }
.guide-cover {
  height: 130px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.02em;
}
.guide-cover.cover-a { background: linear-gradient(135deg, #0e9f6e, #075c40); }
.guide-cover.cover-b { background: linear-gradient(135deg, #1b3e93, #0a1628); }
.guide-cover.cover-c { background: linear-gradient(135deg, #f5b83d, #c77f0a); }
.guide-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.guide-body h3 { font-size: 1.08rem; color: var(--ink); font-weight: 800; letter-spacing: -0.01em; line-height: 1.3; }
.guide-body p { font-size: 0.9rem; color: var(--muted); }
.guide-meta { margin-top: auto; padding-top: 8px; font-size: 0.78rem; color: var(--muted); font-weight: 600; }

/* ---------- FAQ ---------- */

.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.3rem; color: var(--green-dark); flex-shrink: 0; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 12px; font-size: 0.95rem; color: var(--body); }

/* ---------- Follow band ---------- */

.follow-band {
  background:
    radial-gradient(500px 300px at 90% 0%, rgba(14, 159, 110, 0.3), transparent 60%),
    linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 100%);
  border-radius: 22px;
  color: #fff;
  padding: 52px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.follow-band h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); letter-spacing: -0.02em; font-weight: 800; max-width: 520px; line-height: 1.2; }
.follow-band p { color: #a9bac9; margin-top: 10px; max-width: 480px; }

/* ---------- Offers page ---------- */

.page-head {
  background:
    radial-gradient(600px 350px at 90% -20%, rgba(14, 159, 110, 0.22), transparent 60%),
    linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  padding: 56px 0 46px;
}
.page-head h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.03em; font-weight: 800; }
.page-head p { margin-top: 12px; color: #b6c4d2; max-width: 640px; }
.page-head .updated {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 7px 15px;
  border-radius: 999px;
  color: #d7e2ec;
}
.page-head .updated::before { content: "✓"; color: #48d795; font-weight: 800; }

.cat-nav {
  position: sticky;
  top: 68px;
  z-index: 40;
  background: rgba(247, 246, 241, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.cat-nav .wrap {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav .wrap::-webkit-scrollbar { display: none; }
.cat-pill {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--body);
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.cat-pill:hover { text-decoration: none; border-color: var(--green); color: var(--green-dark); }
.cat-pill.active { background: var(--ink); border-color: var(--ink); color: #fff; }

.offer-section { padding: 48px 0 10px; scroll-margin-top: 130px; }
.offer-section h2 {
  font-size: 1.45rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.count-badge {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green-deep);
  background: var(--green-soft);
  border-radius: 999px;
  padding: 3px 11px;
}
.offer-section .sec-sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 24px; max-width: 660px; }

/* ---------- Article / prose ---------- */

.article { padding: 56px 0 72px; }
.article h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 18px;
  max-width: 720px;
}
.byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 38px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.byline .coin {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(145deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}
.byline .by-name { font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: 0.92rem; }
.byline .by-meta { font-size: 0.82rem; color: var(--muted); }

.article h2 { color: var(--ink); font-size: 1.4rem; margin: 38px 0 13px; letter-spacing: -0.02em; font-weight: 800; }
.article h3 { color: var(--ink); font-size: 1.1rem; margin: 28px 0 9px; font-weight: 800; }
.article p { margin-bottom: 16px; }
.article ul, .article ol { margin: 0 0 16px 22px; display: grid; gap: 8px; }
.article .callout {
  background: var(--amber-soft);
  border: 1px solid #f0dcae;
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 0.95rem;
  color: var(--amber-text);
  margin: 22px 0;
}
.article .callout strong { color: #5e4200; }
.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.92rem;
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.article th {
  background: var(--ink);
  color: #fff;
  text-align: left;
  padding: 12px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}
.article td { padding: 12px 16px; border-top: 1px solid var(--line); vertical-align: top; }

.prose-note {
  border-top: 1px solid var(--line);
  margin-top: 44px;
  padding-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}

.related {
  margin-top: 34px;
  background: var(--green-soft);
  border: 1px solid #cdeadb;
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  font-size: 0.95rem;
}
.related strong { font-family: var(--font-display); color: var(--green-deep); }
.related ul { margin: 8px 0 0 20px; display: grid; gap: 6px; }

/* ---------- Honesty band ---------- */

.honesty {
  background: var(--green-soft);
  border: 1px solid #cdeadb;
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.honesty .tick-big {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.honesty p { font-size: 0.95rem; color: #1d4230; }
.honesty strong { color: #123425; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: #9db0c1;
  padding: 56px 0 36px;
  margin-top: 76px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 38px;
}
.site-footer .logo { color: #fff; margin-bottom: 14px; }
.site-footer .footer-blurb { max-width: 280px; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #7fd7b2;
  background: rgba(72, 215, 149, 0.1);
  border: 1px solid rgba(72, 215, 149, 0.25);
  padding: 6px 13px;
  border-radius: 999px;
}
.site-footer h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; display: grid; gap: 9px; }
.site-footer a { color: #9db0c1; }
.site-footer a:hover { color: #fff; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  font-size: 0.8rem;
  line-height: 1.7;
  color: #7d90a1;
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 38px; }
  .hero-visual { display: flex; position: static; min-height: 0; gap: 12px; }
  .hero-visual .mini-card {
    position: static;
    transform: none;
    width: auto;
    flex: 1;
    padding: 16px 18px;
  }
  .verified-sticker { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .follow-band { padding: 40px 28px; }
}

@media (max-width: 480px) {
  .mini-card .mini-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .mini-card h4 { font-size: 0.86rem; }
  .mini-card .mini-amount { font-size: 1.35rem; }
  .mini-card .mini-req { font-size: 0.74rem; }
}

@media (max-width: 760px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fdfcf9;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 24px;
    gap: 16px;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 56px 0 50px; }
  .btn.btn-ghost { margin-left: 0; margin-top: 10px; }
  .cat-nav { top: 68px; }
  .honesty { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .offer-card, .guide-card, .btn { transition: none; }
}

/* ---------- Accessibility & polish ---------- */

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

::selection { background: rgba(14, 159, 110, 0.22); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

.main-nav a.active {
  color: var(--ink);
  border-bottom: 2px solid var(--green);
  padding-bottom: 2px;
}

@media (max-width: 560px) {
  .article table { display: block; overflow-x: auto; }
  .article th, .article td { white-space: nowrap; }
}

.removed-strip {
  margin-top: 22px;
  background: #f1efe8;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 15px 20px;
  font-size: 0.87rem;
  color: var(--muted);
}
.removed-strip strong { color: var(--body); font-family: var(--font-display); }
.removed-strip .gone { text-decoration: line-through; text-decoration-color: rgba(103, 115, 127, 0.55); }
