/* Supporter layer: paywall modal, pro locks, team explorer, alerts.
   Uses the site's existing design tokens so it never looks bolted on. */

/* ── pro locks on individual controls ─────────────────────────────────────── */
.pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 6px;
  padding: 1px 6px 1px 5px;
  font: 600 10px/1.4 var(--body);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--accent);
  border-radius: 2px;
  vertical-align: middle;
}
.pro-badge svg { margin-right: 1px; }
.pro-locked { position: relative; opacity: .62; }
@media (hover: hover) { .pro-locked:hover { opacity: .8; cursor: pointer; } }

/* ── whole-page paywall ───────────────────────────────────────────────────── */
.pro-page-locked { position: relative; }
.pro-page-locked > .stage,
.pro-page-locked > .side,
.pro-page-locked > .leaguebar,
.pro-page-locked > .pf-inner { filter: blur(6px) saturate(.6); pointer-events: none; user-select: none; }
.pro-paywall {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 5;
}

/* On a gated feature page (records, watch, my teams) the paywall sits at the TOP
   of the gate so it is visible the instant the page loads, not centered below
   the fold. */
.pf-gate > .pro-paywall { align-items: start; padding-top: 10px; }
/* "Coming soon" supporter feature (e.g. head-to-head): shown but clearly future. */
.sf-soon-tag {
  display: inline-block; margin-left: 8px; vertical-align: middle;
  font: 700 9.5px/1 var(--body); letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-deep);
  background: color-mix(in srgb, var(--accent) 14%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--hair));
  border-radius: 999px; padding: 3px 7px;
}
.sf-card.sf-soon { opacity: .92; }

/* ── supporter feature pages (records, watch, my teams) shared shell ──────── */
.pfwrap { max-width: 1120px; margin: 0 auto; padding: 30px 20px 72px; }
.pf-head { margin: 4px 0 22px; }
.pf-head h1 {
  font: 800 clamp(30px, 5vw, 46px)/1.02 var(--disp);
  letter-spacing: .01em; color: var(--ink); margin: 0 0 8px;
}
.pf-lede { font: 400 16px/1.5 var(--body); color: var(--ink2); max-width: 60ch; margin: 0; }
.pf-gate { position: relative; min-height: 58vh; }
.pf-inner { min-height: 40vh; }
/* Skeleton loaders, shared by every feature page's own JS (class pf-skel). */
.pf-skel {
  position: relative; overflow: hidden;
  background: color-mix(in srgb, var(--ink) 7%, var(--surface));
  border-radius: 5px; min-height: 16px;
}
.pf-skel::after {
  content: ""; position: absolute; inset: 0; transform: translateX(-100%);
  background: linear-gradient(90deg, transparent,
    color-mix(in srgb, var(--ink) 6%, transparent), transparent);
  animation: pf-sheen 1.25s ease-in-out infinite;
}
@keyframes pf-sheen { 100% { transform: translateX(100%); } }
@media (prefers-reduced-motion: reduce) { .pf-skel::after { animation: none; } }

/* ── the card, shared by page paywall and modal ───────────────────────────── */
.pw-card, .pw-dialog {
  /* 100%, not a vw unit: the card sits inside padded containers (.pro-paywall,
     .pw-modal), and viewport-relative widths overflowed them on phones. */
  width: min(430px, 100%);
  background: var(--paper);
  border: 1px solid var(--hair);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, .45);
  padding: 24px 26px 22px;
  border-radius: 4px;
}
.pw-kicker {
  font: 700 11px/1 var(--body);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.pw-h { font: 800 24px/1.1 var(--disp, var(--body)); margin: 0 0 14px; color: var(--ink); }
.pw-perks { list-style: none; margin: 0 0 14px; padding: 0; display: grid; gap: 7px; }
.pw-perks li {
  position: relative;
  padding-left: 22px;
  font: 400 13px/1.4 var(--body);
  color: var(--ink2);
}
.pw-perks li::before {
  content: "";
  position: absolute;
  left: 4px; top: 6px;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 1px;
  transform: rotate(45deg);
}
.pw-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.pw-price b { font: 800 30px/1 var(--disp, var(--body)); color: var(--ink); }
.pw-price span { font: 400 12.5px var(--body); color: var(--muted); }
.pw-buy {
  display: block;
  width: 100%;
  padding: 12px 16px;
  text-align: center;
  font: 700 14px var(--body);
  color: var(--paper);
  background: var(--ink);
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s;
}
@media (hover: hover) { .pw-buy:hover { background: var(--accent); } }
.pw-signin { margin: 12px 0 0; font: 400 12.5px var(--body); color: var(--muted); text-align: center; }
.pw-signin a { color: var(--accent); font-weight: 600; }
.al-lab { display: block; font: 600 12px var(--body); color: var(--muted); margin-bottom: 6px; }
.al-email, .al-select {
  flex: 1;
  padding: 9px 11px;
  font: 500 13px var(--mono);
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: 3px;
}
.al-email:focus, .al-select:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.pw-unlock {
  padding: 9px 16px;
  font: 700 13px var(--body);
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--ink2);
  border-radius: 3px;
  cursor: pointer;
}
@media (hover: hover) { .pw-unlock:hover { background: var(--ink); color: var(--paper); } }
.pw-msg { margin: 10px 0 0; font: 500 12.5px var(--body); min-height: 1em; }
.pw-msg.good { color: var(--accent); }
.pw-msg.bad { color: var(--bad); }

/* ── modal chrome ─────────────────────────────────────────────────────────── */
body.pw-open { overflow: hidden; }
/* The MODAL scrolls (not the dialog), and "safe center" keeps a tall dialog from
   being clipped on short viewports: it centers when it fits and top-aligns (with
   scroll) when it does not, so no part of the box is ever cut off. */
.pw-modal {
  position: fixed; inset: 0; z-index: 200;
  display: grid; justify-items: center; align-items: safe center;
  /* The implicit column is max-content sized, so a dialog whose content is
     intrinsically wider than a phone would stretch the track past the
     container and its 100% width would resolve against the oversized track.
     minmax(0, 100%) pins the track to the modal's own width. */
  grid-template-columns: minmax(0, 100%);
  padding: 24px 16px; overflow-y: auto; overflow-x: hidden;
  overscroll-behavior: contain;
}
.pw-backdrop { position: fixed; inset: 0; background: rgba(10, 10, 12, .55); backdrop-filter: blur(2px); }
.pw-dialog { position: relative; z-index: 1; margin: auto 0; }
/* The modal's dialog is ONLY a positioning wrapper around .pw-card, so strip the
   shared card chrome — otherwise it renders a card inside a card (doubled border,
   doubled shadow, stacked padding). The export/alerts dialogs keep the card look
   because they ARE the card (content sits directly in .pw-dialog). */
.pw-dialog-modal {
  width: min(430px, 100%);
  background: none; border: 0; box-shadow: none; padding: 0; border-radius: 0;
}
.pw-x {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  font: 400 20px/1 var(--body);
  color: var(--muted);
  background: none; border: 0; border-radius: 50%; cursor: pointer;
  transition: background .12s, color .12s;
}
@media (hover: hover) { .pw-x:hover { color: var(--ink); background: color-mix(in srgb, var(--ink) 8%, transparent); } }
/* 44px close target on touch; the 5px offsets keep the glyph's visual center
   where the 30px box put it, so nothing shifts. */
@media (pointer: coarse) { .pw-x { width: 44px; height: 44px; top: 5px; right: 5px; } }

/* ── team explorer ────────────────────────────────────────────────────────── */
.teampick { display: flex; align-items: center; gap: 8px; }
#teamsearch {
  padding: 8px 11px;
  font: 500 13px var(--body);
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: 3px;
  min-width: 180px;
}
#teamsearch:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
#teamlist {
  max-height: 168px;
  overflow: auto;
  border: 1px solid var(--hair);
  border-radius: 3px;
  background: var(--surface);
  min-width: 240px;
}
.team-row {
  display: flex; align-items: center; gap: 9px;
  width: 100%;
  padding: 6px 10px;
  background: none; border: 0; border-bottom: 1px solid var(--hair);
  font: 500 13px var(--body); color: var(--ink);
  cursor: pointer; text-align: left;
}
.team-row:last-child { border-bottom: 0; }
@media (hover: hover) { .team-row:hover { background: color-mix(in srgb, var(--accent) 10%, transparent); } }
.team-row.sel { background: color-mix(in srgb, var(--accent) 18%, transparent); font-weight: 700; }
.tr-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tr-g { font: 500 11px var(--mono); color: var(--muted); }
.tlogo { object-fit: contain; flex: none; }
.tmono {
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
  color: #fff; font: 700 10px var(--body);
  border-radius: 3px;
}
#team-head { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; position: relative; overflow: hidden; }
#team-head .tlogo, #team-head .tmono { width: 40px; height: 40px; }
#team-head .tmono { font-size: 15px; }
#team-head .tlogo, #team-head .tmono, #team-head .team-headmain { position: relative; z-index: 1; }
/* Large faint grayscale crest behind the team name. */
.team-wm {
  position: absolute; right: -14px; top: 50%; transform: translateY(-50%);
  width: 108px; height: 108px; object-fit: contain;
  filter: grayscale(1); opacity: .09; z-index: 0; pointer-events: none;
}
:root[data-theme="dark"] .team-wm { opacity: .14; }
@media (prefers-color-scheme: dark) { :root:not([data-theme]) .team-wm { opacity: .14; } }
.team-name { margin: 0; font: 800 20px/1.05 var(--disp, var(--body)); color: var(--ink); }
.team-rec { font: 500 12.5px var(--mono); color: var(--muted); }
.stat.sub { margin-top: -6px; font-size: 11.5px; color: var(--muted); }
.owned-list { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.owned-chip {
  padding: 3px 7px; font: 600 12px var(--mono);
  color: var(--ink); background: var(--surface);
  border: 1px solid var(--hair); border-radius: 3px; cursor: pointer;
}
@media (hover: hover) { .owned-chip:hover { border-color: var(--accent); color: var(--accent); } }

/* ── export modal ─────────────────────────────────────────────────────────── */
.exp-dialog { width: min(380px, 100%); }
.exp-sub { font: 400 13px/1.5 var(--body); color: var(--ink2); margin: 0 0 16px; }
.exp-opt { width: 100%; margin-bottom: 10px; }

/* combine team badges */
.team-lg { font: 600 11px var(--body); color: var(--accent); margin-top: 3px; letter-spacing: .02em; }
.tr-lg { display: block; font: 400 10.5px var(--body); color: var(--muted); }

/* ── alerts modal ─────────────────────────────────────────────────────────
   Two labeled columns (When / Where) of quiet hairline option rows; the
   chosen row carries the accent. One uppercase micro-label system matches
   the site's data captions. Sharp corners, same as the grids. */
.al-dialog { width: min(640px, 100%); }
.al-intro { font: 400 13px/1.45 var(--body); color: var(--ink2); margin: 0 0 18px; }
.al-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.al-dialog .al-lab {
  display: block; margin: 0 0 8px;
  font: 700 11px var(--body); letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted);
}
.al-note { margin: 0 0 8px; font: 400 11.5px/1.45 var(--body); color: var(--muted); }
.al-types, .al-scopes { display: grid; gap: 6px; margin: 0; }
.al-type, .al-scope {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--hair); border-radius: 0;
  cursor: pointer; background: none;
  transition: border-color .12s ease, background .12s ease;
}
.al-type:has(input:checked), .al-scope:has(input:checked) {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}
@media (hover: hover) {
  .al-type:hover, .al-scope:hover { border-color: var(--accent); }
}
.al-type input, .al-scope input { margin-top: 3px; accent-color: var(--accent); }
.al-type-txt, .al-scope-txt { display: flex; flex-direction: column; min-width: 0; }
.al-scope-lab { font: 500 13px/1.35 var(--body); color: var(--ink); }
.al-scope-sub { font: 400 11.5px/1.35 var(--body); color: var(--muted); margin-top: 1px; }
.al-pctrow { margin-top: 8px; }
.al-pctctl { display: flex; align-items: center; gap: 8px; font: 500 12.5px var(--body); color: var(--ink2); }
.al-pctin {
  width: 64px; font: 600 15px var(--mono); color: var(--ink); text-align: center;
  background: var(--surface); border: 1px solid var(--hair); border-radius: 0; padding: 7px 8px;
}
.al-pctin:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.al-sendrow { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--hair); }
.al-sendctl { display: flex; gap: 8px; }
.al-sendctl .al-email { flex: 1; min-width: 0; margin: 0; }
.al-addbtn {
  font: 700 13.5px var(--body); color: var(--accent-ink);
  background: var(--accent); border: 1px solid var(--accent); border-radius: 0;
  padding: 0 22px; min-height: 42px; cursor: pointer; white-space: nowrap;
  transition: background .12s ease, border-color .12s ease;
}
@media (hover: hover) {
  .al-addbtn:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
}
.al-addbtn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (max-width: 620px) {
  .al-cols { grid-template-columns: 1fr; gap: 14px; }
}
.al-pending {
  display: inline-block; margin-left: 6px; padding: 1px 6px;
  font: 600 10px var(--body); letter-spacing: .03em; text-transform: uppercase;
  color: var(--cat2); border: 1px solid currentColor; border-radius: 2px;
}
.al-select { width: 100%; margin-bottom: 6px; font-family: var(--body); }
.al-list-wrap { margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--hair); }
.al-list-wrap h3 { margin: 0 0 8px; font: 700 11px var(--body); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.al-list { display: grid; gap: 6px; }
.al-item {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 7px 10px; background: var(--surface);
  border: 1px solid var(--hair); border-radius: 3px;
  font: 500 12.5px var(--body); color: var(--ink);
}
.al-del { min-width: 40px; min-height: 40px; display: inline-flex; align-items: center; justify-content: center; font: 400 18px/1 var(--body); color: var(--muted); background: none; border: 0; cursor: pointer; margin: -8px -6px -8px 0; }
@media (hover: hover) { .al-del:hover { color: var(--bad); } }

/* ── supporter / account page ─────────────────────────────────────────────── */
.supporter-page { max-width: 1080px; margin: 0 auto; padding: 32px 24px 64px; }
.sup-hero { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; margin-bottom: 40px; }
.sup-hero h1 { font: 800 clamp(30px, 5vw, 46px)/1.03 var(--disp, var(--body)); color: var(--ink); margin: 6px 0 14px; }
.sup-hero .lede { font: 400 15.5px/1.55 var(--body); color: var(--ink2); max-width: 42ch; }
.sup-cta { display: flex; align-items: center; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.sup-buy { display: inline-block; width: auto; padding: 13px 26px; font-size: 15px; }
.sup-cta-note { font: 400 12.5px var(--body); color: var(--muted); }
.sup-hero-card .pw-card { width: 100%; box-shadow: 0 24px 60px -28px rgba(0,0,0,.4); }

.sup-features { margin: 8px 0 44px; }
.sup-features h2, .sup-final h2 { font: 800 22px var(--disp, var(--body)); color: var(--ink); margin: 0 0 18px; }
.sf-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.sf-card { padding: 20px; border: 1px solid var(--hair); border-radius: 4px; background: var(--surface); }
.sf-mark { display: block; width: 13px; height: 13px; background: var(--accent); border-radius: 2px; transform: rotate(45deg); margin: 3px 0 16px 4px; }
.sf-card h3 { font: 700 16px var(--body); color: var(--ink); margin: 0 0 6px; }
.sf-card p { font: 400 13.5px/1.5 var(--body); color: var(--ink2); margin: 0; }

.sup-final { text-align: center; padding: 36px 20px; border-top: 1px solid var(--hair); }
.sup-final p { font: 400 14px var(--body); color: var(--ink2); margin: 0 0 18px; }

.acct-card { width: 100%; }
.acct-sub, .acct-status { font: 400 13.5px/1.5 var(--body); color: var(--ink2); margin: 0 0 16px; }
.acct-status.good { color: var(--accent); font-weight: 600; }
.acct-google { min-height: 20px; margin-bottom: 4px; display: flex; justify-content: center; }
.acct-note { font: 400 12.5px var(--body); color: var(--muted); text-align: center; margin: 6px 0; }
.acct-or { display: flex; align-items: center; gap: 10px; margin: 14px 0; color: var(--muted); font: 500 11px var(--body); text-transform: uppercase; letter-spacing: .06em; }
.acct-or::before, .acct-or::after { content: ""; flex: 1; height: 1px; background: var(--hair); }
.acct-emailform { display: flex; flex-direction: column; gap: 8px; }
.acct-btn { width: 100%; }
.acct-toggle { font: 400 13px/1.5 var(--body); color: var(--ink2); margin: 14px 0 0; text-align: center; }
.acct-link {
  background: none; border: 0; padding: 0; font: inherit; font-weight: 700;
  color: var(--accent); cursor: pointer;
}
@media (hover: hover) { .acct-link:hover { color: var(--accent-deep); text-decoration: underline; } }
.acct-toggle + .acct-toggle { margin-top: 4px; }

/* ── account security controls (password hint, show/hide, delete) ─────────── */
.acct-hint { font: 400 12px/1.45 var(--body); color: var(--muted); margin: -2px 0 0; }
.acct-hint.bad { color: var(--bad); }
.acct-hint.good { color: var(--accent); }
.acct-passwrap { position: relative; display: flex; }
.acct-passwrap .al-email { flex: 1; min-width: 0; padding-right: 56px; }
.acct-showpw {
  position: absolute; top: 0; right: 0; bottom: 0;
  padding: 0 12px;
  font: 700 11px var(--body); letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted); background: none; border: 0; cursor: pointer;
}
@media (hover: hover) { .acct-showpw:hover { color: var(--accent); } }
/* 44px touch target on coarse pointers: the button overhangs the ~38px input
   row symmetrically, so the visual position does not shift. */
@media (pointer: coarse) { .acct-showpw { min-width: 44px; top: -3px; bottom: -3px; } }
.acct-danger-wrap { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--hair); }
.acct-danger {
  background: none; border: 0; padding: 0;
  font: 600 12.5px var(--body); color: var(--muted);
  cursor: pointer; text-decoration: underline; text-underline-offset: 2px;
}
@media (hover: hover) { .acct-danger:hover { color: var(--bad); } }
@media (pointer: coarse) { .acct-danger { min-height: 44px; display: inline-flex; align-items: center; } }
.acct-confirm { margin-top: 10px; }
.acct-confirm-txt { font: 400 12.5px/1.5 var(--body); color: var(--ink2); margin: 0 0 8px; }
.acct-confirm-row { display: flex; gap: 8px; }
.acct-confirm-row .al-email { flex: 1; min-width: 0; }
.acct-confirm-btn { flex: none; color: var(--bad); border-color: var(--bad); }
@media (hover: hover) { .acct-confirm-btn:hover:not(:disabled) { background: var(--bad); color: var(--paper); } }
.acct-confirm-btn:disabled { opacity: .45; cursor: default; }
@media (pointer: coarse) { .acct-confirm-row .al-email, .acct-confirm-btn { min-height: 44px; } }

/* ── home supporter band ──────────────────────────────────────────────────── */
.sup-band {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; align-items: center;
  margin: 40px 0; padding: 28px 30px;
  border: 1px solid var(--hair); border-radius: 6px;
  background: color-mix(in srgb, var(--accent) 5%, var(--surface));
}
.sup-band-copy h2 { font: 800 22px var(--disp, var(--body)); color: var(--ink); margin: 4px 0 8px; }
.sup-band-copy p { font: 400 14px/1.5 var(--body); color: var(--ink2); margin: 0 0 16px; max-width: 40ch; }
.sup-band-cta { display: flex; align-items: center; gap: 12px; }
.sup-cta-btn { display: inline-block; width: auto; padding: 11px 20px; }
.sup-band-thanks { display: none; font: 500 13px var(--body); color: var(--accent); }
.is-supporter .sup-band-thanks { display: inline; }
.is-supporter .sup-cta-btn { display: none; }
/* Existing supporters should never see a "buy it" prompt: hide the /supporter/
   buy CTAs and show a thank-you instead. */
.sup-thanks { display: none; }
.is-supporter .sup-buy,
.is-supporter .sup-cta-note,
.is-supporter .sup-final-buy { display: none; }
.is-supporter .sup-thanks {
  display: inline-flex; align-items: center;
  font: 600 14px/1.4 var(--body); color: var(--cat3);
}
.sup-band-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.sup-band-list li { display: flex; flex-direction: column; gap: 2px; }
.sup-band-list b { font: 700 13.5px var(--body); color: var(--ink); }
.sup-band-list span { font: 400 12.5px/1.4 var(--body); color: var(--muted); }

/* ── dashboard "what you are missing" teaser ──────────────────────────────── */
.sup-teaser { max-width: 1200px; margin: 12px auto 0; padding: 0 20px; }
.is-supporter .sup-teaser { display: none; }
.sup-teaser-in {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 12px 18px; border: 1px solid var(--hair);
  border-left: 3px solid var(--accent); border-radius: 4px;
  background: var(--surface); font: 400 13px/1.45 var(--body); color: var(--ink2);
}
.sup-teaser-in b { color: var(--ink); }
.sup-teaser-lock { display: inline-block; width: 10px; height: 10px; background: var(--accent); border-radius: 2px; transform: rotate(45deg); flex: none; }
/* Only the text span flexes; the small diamond mark must keep its 10px box
   (a bare `.sup-teaser-in span` also matched the mark and stretched it into a
   giant rotated bar). */
.sup-teaser-in > span:not(.sup-teaser-lock) { flex: 1; min-width: 220px; }
.sup-teaser-cta {
  flex: none; padding: 8px 16px; border-radius: 3px;
  background: var(--ink); color: var(--paper); font: 700 12.5px var(--body);
  text-decoration: none; white-space: nowrap;
}
@media (hover: hover) { .sup-teaser-cta:hover { background: var(--accent); } }

/* Stack the two-column supporter layouts on narrow screens (they were letting
   the sign-in card / feature list run off the right edge on mobile). */
@media (max-width: 760px) {
  .sup-hero { grid-template-columns: 1fr; gap: 26px; }
  .sup-band { grid-template-columns: 1fr; gap: 20px; }
  .sup-band-list { grid-template-columns: 1fr; }
  .supporter-page { padding: 24px 18px 56px; }
}

/* donate links */
.footdonate { color: var(--accent); font-weight: 600; }
.sup-donate {
  margin: 22px auto 0; max-width: 460px; padding: 18px 20px; text-align: center;
  border: 1px solid var(--hair); background: var(--surface); border-radius: 4px;
}
.sup-donate-k {
  display: block; font: 700 11px var(--mono); letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 6px;
}
.sup-donate p { font: 400 13.5px/1.5 var(--body); color: var(--ink2); margin: 0 0 12px; }
.sup-donate-btn {
  display: inline-block; padding: 9px 18px; font: 700 13px var(--body);
  color: var(--ink); background: none; border: 1px solid var(--ink2); border-radius: 3px;
  text-decoration: none; transition: background .12s, color .12s, border-color .12s;
}
@media (hover: hover) { .sup-donate-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); } }
/* Inactive until a donation link is configured (SCORI_DONATE_URL). */
.sup-donate-btn.is-off { opacity: .45; pointer-events: none; cursor: default; }
/* Buy CTA before a checkout link is configured: visibly disabled, not a dead link. */
.pw-buy.is-off, .sup-buy.is-off { opacity: .5; pointer-events: none; cursor: default; }

/* clickable side-panel stats (latest scorigami, most common) that select a cell */
.clickcell { cursor: pointer; }
@media (hover: hover) { .clickcell:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; } }

/* supporter entry point in the nav / footer */
.navsupport { color: var(--accent) !important; font-weight: 700; }
