/* ============================================================
   TopCasinoList - money pages (Tier 2 toplists), shared styles
   Layout ported from the btcreels moneypage template, Paua tokens.
   Requires main.css (tokens) + page.css (prose, callouts, tables)
   ============================================================ */

/* ── HERO ─────────────────────────────────────── */
.stage-rank { padding-bottom: 44px; }
.stage.stage-rank::before {
  background: linear-gradient(100deg, rgba(8,10,16,0.94) 0%, rgba(8,10,16,0.80) 55%, rgba(8,10,16,0.55) 100%);
}
.stage-rank .gu-lead { margin-bottom: 26px; }

/* Author + meta strip (in hero) */
.moa-scribe-strip {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: rgba(16,21,31,0.72); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 18px; width: fit-content;
  backdrop-filter: blur(6px);
}
.moa-scribe-face {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 2px solid var(--teal); flex-shrink: 0;
}
.moa-scribe-meta { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.moa-scribe-name { font-size: 13px; font-weight: 800; color: var(--text); font-family: var(--font-display); }
.moa-scribe-role { font-size: 11px; color: var(--muted); }
.moa-meta-divider { width: 1px; height: 30px; background: var(--border-hi); flex-shrink: 0; }
.moa-meta-pill {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--muted);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 6px; padding: 4px 10px;
}
.moa-meta-pill img { width: 13px; height: 13px; filter: invert(72%); }

/* ── TICKER STRIP ─────────────────────────────── */
.moa-marquee-wrap {
  background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; overflow: hidden; height: 40px;
}
.moa-marquee-label {
  flex-shrink: 0; background: var(--gold-grad); color: var(--btn-text);
  font-family: var(--font-display); font-size: 10px; font-weight: 800; letter-spacing: 1px;
  padding: 0 16px; height: 100%; display: flex; align-items: center; white-space: nowrap;
  text-transform: uppercase;
}
.moa-marquee-track { flex: 1; overflow: hidden; position: relative; }
.moa-marquee-inner { display: flex; gap: 0; animation: marqueeLoop 30s linear infinite; white-space: nowrap; }
.moa-marquee-track:hover .moa-marquee-inner { animation-play-state: paused; }
@media (max-width: 768px) { .moa-marquee-inner { animation-duration: 18s; } }
@keyframes marqueeLoop { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.moa-tick {
  display: inline-flex; align-items: center; gap: 7px; padding: 0 22px;
  font-size: 12px; font-weight: 600; color: var(--text-2);
  border-right: 1px solid var(--border); height: 40px; white-space: nowrap; transition: color 0.2s;
}
.moa-tick:hover { color: var(--teal); }
.moa-tick-rank {
  font-size: 10px; font-weight: 800; color: var(--teal);
  background: var(--teal-dim); border-radius: 4px; padding: 1px 5px; font-family: var(--font-display);
}
.moa-tick-pts { font-size: 11px; font-weight: 800; color: var(--gold); margin-left: 2px; font-family: var(--font-display); }

/* ── DISCLOSURE BAR ───────────────────────────── */
.moa-notice { background: var(--bg-2); border-bottom: 1px solid var(--border); }
.moa-notice-inner {
  max-width: 1240px; margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 12px; color: var(--muted); text-align: center; flex-wrap: wrap;
}
.moa-notice-inner img { width: 14px; height: 14px; filter: invert(60%); flex-shrink: 0; }
.moa-notice-inner a { color: var(--text-2); text-decoration: underline; text-underline-offset: 2px; }
.moa-notice-inner a:hover { color: var(--teal); }

/* ── LAYOUT ───────────────────────────────────── */
.moa-layout {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 40px;
  padding: 48px 20px 64px; align-items: start;
}

/* ── SIDEBAR ──────────────────────────────────── */
.moa-rail { position: sticky; top: 120px; }

.moa-jump {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 20px;
}
.moa-jump-head {
  display: flex; align-items: center; gap: 8px; padding: 14px 18px;
  background: var(--bg-2); border-bottom: 1px solid var(--border);
  font-family: var(--font-display); font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.8px; color: var(--text);
}
.moa-jump-head img { width: 15px; height: 15px; filter: invert(72%); }
.moa-jump-list { list-style: none; padding: 10px 0; margin: 0; counter-reset: toc-counter; }
.moa-jump-list li { counter-increment: toc-counter; }
.moa-jump-link {
  display: flex; align-items: center; gap: 10px; padding: 8px 18px;
  font-size: 13px; color: var(--muted); transition: all 0.18s; border-left: 3px solid transparent;
}
.moa-jump-link::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-family: var(--font-display); font-size: 10px; font-weight: 800;
  color: var(--border-hi); flex-shrink: 0; width: 20px; transition: color 0.18s;
}
.moa-jump-link:hover, .moa-jump-link.active { color: var(--text); border-left-color: var(--teal); background: rgba(45,212,191,0.05); }
.moa-jump-link:hover::before, .moa-jump-link.active::before { color: var(--teal); }

/* Sidebar editor's pick */
.moa-rail-offer {
  background:
    radial-gradient(300px 160px at 50% -40px, rgba(246,196,83,0.10), transparent 70%),
    var(--surface);
  border: 1px solid rgba(246,196,83,0.35); border-radius: var(--radius);
  padding: 20px 18px; text-align: center; margin-bottom: 16px;
  box-shadow: 0 4px 24px rgba(246,196,83,0.07);
}
.moa-sb-kicker {
  font-family: var(--font-display); font-size: 10px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.moa-sb-name { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.moa-sb-pts { display: flex; align-items: center; justify-content: center; gap: 7px; margin-bottom: 12px; }
.moa-sb-num { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--gold); }
.moa-sb-sparks { font-size: 13px; color: var(--gold); letter-spacing: 1px; }
.moa-sb-offer { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.45; margin-bottom: 14px; }
.moa-sb-btn {
  display: block; width: 100%; text-align: center;
  background: var(--gold-grad); color: var(--btn-text);
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  padding: 11px 16px; border-radius: 8px; margin-bottom: 10px;
  box-shadow: 0 4px 14px rgba(240,169,60,0.26);
  transition: transform 0.15s var(--ease), filter 0.15s var(--ease);
}
.moa-sb-btn:hover { transform: translateY(-1px); filter: brightness(1.06); }
.moa-sb-disclaimer { font-size: 10px; color: var(--muted); line-height: 1.5; }

/* ── ARTICLE ──────────────────────────────────── */
.moa-article { min-width: 0; }
.moa-section { margin-bottom: 56px; }
.moa-h2 {
  font-family: var(--font-display); font-size: clamp(1.35rem, 2.6vw, 1.55rem); font-weight: 800;
  letter-spacing: -0.02em; color: var(--text); line-height: 1.25;
  margin-bottom: 12px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border); position: relative;
}
.moa-h2::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 52px; height: 2px; background: var(--iri);
}
.moa-h3 { font-family: var(--font-display); font-size: 1.08rem; font-weight: 800; color: var(--text); margin: 24px 0 12px; }
.moa-lead { font-size: 14.5px; color: var(--muted); line-height: 1.7; margin-bottom: 22px; }
.moa-article p { font-size: 14.5px; color: var(--text-2); line-height: 1.8; margin-bottom: 14px; }
.moa-article p a { color: var(--teal); font-weight: 600; }
.moa-article p a:hover { text-decoration: underline; }
.moa-article ul.moa-list { margin: 0 0 16px 20px; }
.moa-article ul.moa-list li { font-size: 14.5px; color: var(--text-2); line-height: 1.7; margin-bottom: 8px; }
.moa-article ul.moa-list strong, .moa-article p strong { color: var(--text); }

/* ── COMPARISON TABLE ─────────────────────────── */
.moa-matrix-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); margin-bottom: 12px; }
.moa-matrix { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 640px; }
.moa-matrix thead { background: var(--bg-2); }
.moa-matrix th {
  padding: 12px 14px; text-align: left; font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); white-space: nowrap;
}
.moa-matrix td { padding: 13px 14px; border-top: 1px solid var(--border); vertical-align: middle; color: var(--text-2); }
.moa-matrix td strong { color: var(--text); }
.moa-matrix tbody tr { background: var(--surface); transition: background 0.15s; }
.moa-matrix tbody tr:hover { background: var(--surface-2); }
.moa-matrix-top { background: rgba(246,196,83,0.05) !important; }
.moa-matrix-top td { border-top-color: rgba(246,196,83,0.18) !important; }

.moa-rank {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  font-family: var(--font-display); font-size: 12px; font-weight: 800;
  background: var(--surface-2); color: var(--muted);
}
.moa-rank.koru   { background: linear-gradient(135deg,#b8860b,#F6C453); color: #08121b; }
.moa-rank.fern { background: linear-gradient(135deg,#64748b,#b2bdcf); color: #08121b; }
.moa-rank.kea { background: linear-gradient(135deg,#7c3f1e,#cd7f32); color: #fff; }

.moa-yes  { color: var(--teal); font-weight: 700; }
.moa-no   { color: var(--danger); font-size: 11px; font-weight: 700; background: rgba(240,113,106,0.10); border-radius: 4px; padding: 2px 6px; }
.moa-soft { color: var(--text-2); font-size: 11px; font-weight: 600; background: rgba(148,163,184,0.08); border-radius: 4px; padding: 2px 6px; }
.moa-good { color: var(--teal); font-size: 11px; font-weight: 700; background: var(--teal-dim); border-radius: 4px; padding: 2px 6px; }
.moa-warn { color: var(--gold); font-size: 11px; font-weight: 700; background: var(--gold-dim); border-radius: 4px; padding: 2px 6px; }
.moa-pts { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--gold); }

.moa-matrix-btn {
  display: inline-block; padding: 5px 12px;
  background: var(--teal-dim); border: 1px solid rgba(45,212,191,0.3); border-radius: 6px;
  font-size: 12px; font-weight: 700; color: var(--teal); white-space: nowrap; transition: all 0.18s;
}
.moa-matrix-btn:hover { background: var(--teal); color: #08121b; }
.moa-matrix-note { font-size: 11.5px; color: var(--muted); margin-bottom: 0; }
.moa-ranking-note { margin-top: 6px; font-style: italic; border-left: 2px solid var(--border-hi); padding-left: 9px; }
.moa-ranking-note a { color: var(--teal); }

/* ── CASINO BLOCK ─────────────────────────────── */
.moa-house-block {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; padding: 0;
}
.moa-house-header {
  display: flex; align-items: center; gap: 20px; padding: 24px 28px;
  border-bottom: 1px solid var(--border); background: var(--bg-2); flex-wrap: wrap;
}
.moa-house-rank {
  flex-shrink: 0; width: 62px; height: 62px; border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  background: linear-gradient(135deg, #b8860b, #F6C453);
}
.moa-house-rank.fern { background: linear-gradient(135deg, #64748b, #b2bdcf); }
.moa-house-rank.kea { background: linear-gradient(135deg, #7c3f1e, #cd7f32); }
.moa-house-rank.plain  { background: var(--surface-2); border: 1px solid var(--border-hi); }
.moa-rk-label { font-size: 8px; font-weight: 800; letter-spacing: 1px; color: rgba(0,0,0,0.55); text-transform: uppercase; font-family: var(--font-display); }
.moa-rk-num { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: #08121b; line-height: 1; }
.moa-house-rank.plain .moa-rk-label { color: var(--muted); }
.moa-house-rank.plain .moa-rk-num { color: var(--text); }
.moa-house-rank.kea .moa-rk-label { color: rgba(255,255,255,0.6); }
.moa-house-rank.kea .moa-rk-num { color: #fff; }

.moa-house-title-group { flex: 1; min-width: 200px; }
.moa-house-badge {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  padding: 3px 10px; border-radius: 4px; margin-bottom: 7px; text-transform: uppercase;
}
.moa-house-badge.tag-gold   { background: rgba(246,196,83,0.16); color: var(--gold); border: 1px solid rgba(246,196,83,0.3); }
.moa-house-badge.tag-teal   { background: rgba(45,212,191,0.14); color: var(--teal); border: 1px solid rgba(45,212,191,0.28); }
.moa-house-badge.tag-violet { background: rgba(139,92,246,0.16); color: #a78bfa; border: 1px solid rgba(139,92,246,0.28); }
.moa-house-badge.tag-blue   { background: rgba(91,141,239,0.16); color: #7aa5f5; border: 1px solid rgba(91,141,239,0.3); }
.moa-house-name { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.55rem); font-weight: 800; color: var(--text); line-height: 1.1; margin-bottom: 4px; }
.moa-house-subline { font-size: 13px; color: var(--muted); }

.moa-house-pts-block {
  flex-shrink: 0; text-align: center;
  background: var(--gold-dim); border: 1px solid rgba(246,196,83,0.25); border-radius: 10px;
  padding: 12px 18px;
}
.moa-ht-num { display: block; font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--gold); line-height: 1; }
.moa-ht-sparks { display: block; font-size: 13px; color: var(--gold); margin: 4px 0; letter-spacing: 1px; }
.moa-ht-label { display: block; font-size: 10px; color: var(--muted); font-weight: 700; white-space: nowrap; }

.moa-house-body { display: grid; grid-template-columns: 1fr 260px; gap: 0; border-bottom: 1px solid var(--border); }
.moa-house-info { padding: 24px 28px; border-right: 1px solid var(--border); min-width: 0; }

/* Score mini bars */
.moa-pts-bars { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.moa-meter { display: grid; grid-template-columns: 110px 1fr 34px; align-items: center; gap: 10px; }
.moa-meter-label { font-size: 11px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.moa-meter-track { height: 6px; background: var(--surface-2); border-radius: 4px; overflow: hidden; }
.moa-meter-fill {
  height: 100%; width: 0; border-radius: 4px;
  animation: meterFill 0.8s cubic-bezier(0.22,1,0.36,1) forwards; animation-delay: 0.2s;
}
@keyframes meterFill { to { width: var(--w, 80%); } }
.moa-meter-val { font-family: var(--font-display); font-size: 11px; font-weight: 800; color: var(--text-2); text-align: right; }

/* Pros / Cons */
.moa-ups-downs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.moa-ud-head { font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 9px; color: var(--text); }
.moa-ups ul, .moa-downs ul { list-style: none; display: flex; flex-direction: column; gap: 7px; margin: 0; padding: 0; }
.moa-ups li, .moa-downs li { font-size: 12.5px; color: var(--text-2); line-height: 1.5; padding-left: 15px; position: relative; }
.moa-ups li::before { content: '\2713'; position: absolute; left: 0; color: var(--teal); font-size: 11px; font-weight: 900; }
.moa-downs li::before { content: '\2717'; position: absolute; left: 0; color: var(--danger); font-size: 11px; font-weight: 900; }

/* CTA column */
.moa-house-cta-col { padding: 24px 20px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.moa-offer-box {
  background: var(--gold-dim); border: 1px solid rgba(246,196,83,0.25); border-radius: 10px;
  padding: 18px 16px; text-align: center;
}
.moa-ob-label { font-family: var(--font-display); font-size: 9px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.moa-ob-amount { font-size: 15px; color: var(--text-2); line-height: 1.3; margin-bottom: 4px; }
.moa-ob-amount strong { display: block; font-family: var(--font-display); font-size: 21px; font-weight: 800; color: var(--gold); }
.moa-ob-extra { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.moa-ob-btn {
  display: block; width: 100%; text-align: center;
  background: var(--gold-grad); color: var(--btn-text);
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  padding: 11px 14px; border-radius: 8px; margin-bottom: 10px;
  box-shadow: 0 4px 14px rgba(240,169,60,0.26);
  transition: transform 0.15s var(--ease), filter 0.15s var(--ease);
}
.moa-ob-btn:hover { transform: translateY(-1px); filter: brightness(1.06); }
.moa-ob-tags { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; }
.moa-ob-tags span {
  font-size: 10px; font-weight: 700; background: var(--bg-2);
  border: 1px solid var(--border); border-radius: 4px; padding: 2px 7px; color: var(--muted);
}
.moa-full-review-link { font-size: 12px; font-weight: 700; color: var(--teal); text-align: center; display: block; transition: color 0.2s; }
.moa-full-review-link:hover { text-decoration: underline; }

/* Casino detail + verdict */
.moa-house-detail { padding: 24px 28px; }
.moa-house-detail .moa-h3:first-child { margin-top: 0; }
.moa-figure { margin: 0 0 20px; }
.moa-figure img {
  display: block; width: 100%; height: auto;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
}
.moa-figure figcaption { font-size: 12px; color: var(--muted); margin-top: 8px; }
.moa-ruling-box {
  background: var(--gold-dim); border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0; padding: 14px 18px; margin-top: 20px;
}
.moa-ruling-label {
  display: block; font-family: var(--font-display); font-size: 11px; font-weight: 800;
  letter-spacing: 0.8px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.moa-ruling-box p { font-size: 13.5px; color: var(--text-2); line-height: 1.65; margin: 0; }

/* ── MINI CARD LIST ───────────────────────────── */
.moa-micro-list { display: flex; flex-direction: column; gap: 12px; }
.moa-micro-card {
  display: flex; align-items: stretch;
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; transition: border-color 0.2s, transform 0.2s;
}
.moa-micro-card:hover { border-color: var(--border-hi); transform: translateX(3px); }
.moa-micro-rank {
  flex-shrink: 0; width: 52px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--border-hi);
  background: var(--bg-2); border-right: 1px solid var(--border);
}
.moa-micro-body { padding: 14px 18px; flex: 1; min-width: 0; }
.moa-micro-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.moa-micro-top strong { font-family: var(--font-display); font-size: 15px; color: var(--text); }
.moa-micro-pts { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--gold); }
.moa-micro-body p { font-size: 13px; color: var(--text-2); margin-bottom: 8px; line-height: 1.55; }
.moa-micro-link { font-size: 12px; font-weight: 700; color: var(--teal); }
.moa-micro-link:hover { text-decoration: underline; }

/* ── CRITERIA GRID ────────────────────────────── */
.moa-gauges-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.moa-gauge-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  padding: 20px 16px; transition: border-color 0.2s, transform 0.2s;
}
.moa-gauge-card:hover { border-color: var(--border-hi); transform: translateY(-2px); }
.moa-gauge-card img { width: 24px; height: 24px; filter: invert(72%); margin-bottom: 10px; display: block; }
.moa-gauge-card h4 { font-family: var(--font-display); font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.moa-gauge-card p { font-size: 12.5px; color: var(--text-2); line-height: 1.6; margin: 0; }

/* ── LEGAL BOX ────────────────────────────────── */
.moa-fineprint-box {
  background: var(--teal-dim); border: 1px solid rgba(45,212,191,0.2); border-left: 4px solid var(--teal);
  border-radius: 0 10px 10px 0; padding: 22px 24px 22px 20px;
  display: flex; gap: 18px; align-items: flex-start;
}
.moa-fineprint-box > img { width: 28px; height: 28px; filter: invert(72%); flex-shrink: 0; margin-top: 2px; }
.moa-fineprint-box p { font-size: 14px; color: var(--text-2); line-height: 1.75; margin: 0 0 12px; }
.moa-fineprint-box p:last-child { margin-bottom: 0; }
.moa-fineprint-box strong { color: var(--text); }
.moa-fineprint-box a { color: var(--teal); font-weight: 600; }
.moa-fineprint-box a:hover { text-decoration: underline; }

/* ── FAQ ──────────────────────────────────────── */
.moa-qa { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.moa-qa-item { border-bottom: 1px solid var(--border); }
.moa-qa-item:last-child { border-bottom: none; }
.moa-qa-q {
  width: 100%; text-align: left; padding: 17px 20px;
  background: var(--surface); border: none; color: var(--text);
  font-family: var(--font-display); font-size: 14px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: background 0.18s, color 0.18s;
}
.moa-qa-q:hover { background: var(--surface-2); }
.moa-qa-q.open { color: var(--teal); background: rgba(45,212,191,0.05); }
.moa-qa-arrow { font-size: 15px; transition: transform 0.25s; flex-shrink: 0; color: var(--muted); }
.moa-qa-q.open .moa-qa-arrow { transform: rotate(180deg); color: var(--teal); }
.moa-qa-a { display: none; padding: 2px 20px 18px; background: rgba(45,212,191,0.03); }
.moa-qa-a p { font-size: 14px; color: var(--text-2); line-height: 1.75; margin: 0 0 10px; }
.moa-qa-a p:last-child { margin-bottom: 0; }
.moa-qa-a a { color: var(--teal); font-weight: 600; }
.moa-qa-a a:hover { text-decoration: underline; }

/* ── AUTHOR CARD ──────────────────────────────── */
.moa-scribe-card {
  display: flex; gap: 26px; align-items: stretch;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px;
}
.moa-sc-img-col { flex-shrink: 0; width: 190px; }
.moa-sc-img {
  display: block; width: 100%; height: 100%; min-height: 250px;
  border-radius: var(--radius-sm); object-fit: cover; object-position: center top;
  border: 1px solid var(--border-hi);
}
.moa-sc-content { flex: 1; min-width: 0; }
.moa-sc-kicker { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); }
.moa-sc-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--text); margin: 4px 0 2px; }
.moa-sc-role { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.moa-sc-bio { font-size: 13.5px; color: var(--text-2); line-height: 1.7; margin-bottom: 16px; }
.moa-sc-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.moa-sc-pill {
  display: flex; flex-direction: column; gap: 1px;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 8px; padding: 8px 14px;
}
.moa-sc-pill .chip-num { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--gold); }
.moa-sc-pill .chip-label { font-size: 10.5px; color: var(--muted); }

/* ── PAYMENT TILES + STEPS (kept components) ──── */
.moa-pay-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(124px, 1fr)); gap: 12px; margin: 20px 0; }
.moa-pay-tile { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 12px; display: flex; align-items: center; justify-content: center; min-height: 56px; }
.moa-pay-tile img { width: 100%; max-width: 120px; height: auto; display: block; }

.moa-ladder { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 22px 0; counter-reset: mpstep; }
.moa-rung { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; counter-increment: mpstep; }
.moa-rung::before {
  content: counter(mpstep);
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%; margin-bottom: 12px;
  background: var(--iri); color: #08121b;
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
}
.moa-rung h4 { font-family: var(--font-display); font-size: 14px; font-weight: 800; color: var(--text); margin: 0 0 7px; }
.moa-rung p { font-size: 12.5px; color: var(--text-2); line-height: 1.6; margin: 0; }

/* Bottom disclaimer strip */
.moa-fineprint {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 22px; margin-top: 8px;
}
.moa-fineprint img { width: 20px; height: 20px; filter: invert(72%); flex-shrink: 0; margin-top: 2px; }
.moa-fineprint p { font-size: 13px; color: var(--text-2); line-height: 1.6; margin: 0; }
.moa-fineprint a { color: var(--teal); }
.moa-fineprint a:hover { text-decoration: underline; }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
  .moa-layout { grid-template-columns: 240px 1fr; gap: 28px; }
  .moa-gauges-grid { grid-template-columns: repeat(2, 1fr); }
  .moa-house-body { grid-template-columns: 1fr 230px; }
}
@media (max-width: 900px) {
  .moa-rail { position: static; }
  .moa-layout { grid-template-columns: 1fr; }
  .moa-rail-offer { display: none; }
  .moa-ups-downs { grid-template-columns: 1fr; }
  .moa-ladder { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .moa-scribe-strip { gap: 10px; padding: 10px 14px; }
  .moa-meta-divider { display: none; }
  .moa-house-header { gap: 14px; padding: 18px; }
  .moa-house-body { grid-template-columns: 1fr; }
  .moa-house-info { border-right: none; border-bottom: 1px solid var(--border); padding: 18px; }
  .moa-house-cta-col { padding: 18px; }
  .moa-house-detail { padding: 18px; }
  .moa-gauges-grid { grid-template-columns: 1fr; }
  .moa-matrix th, .moa-matrix td { padding: 10px; }
  .moa-scribe-card { flex-direction: column; align-items: center; text-align: center; }
  .moa-sc-img-col { width: 210px; }
  .moa-sc-img { min-height: 0; aspect-ratio: 3 / 4; height: auto; }
  .moa-sc-pills { justify-content: center; }
}
@media (max-width: 600px) {
  .moa-ladder { grid-template-columns: 1fr; }
  .moa-house-rank { width: 50px; height: 50px; }
  .moa-rk-num { font-size: 21px; }
  .moa-meter { grid-template-columns: 92px 1fr 30px; }
}
