/* ============================================================
   Support Us page (public landing page, no app shell). Ported from
   the kit's support-us/support-us.css — colors/shadows/spacing reuse
   the existing kit tokens; only the 3 missing display/mono font tokens
   are added here, scoped to this page's classes.
   ============================================================ */
:root {
  --font-display: 'Poppins', sans-serif;
  --font-sans: 'Open Sans', system-ui, sans-serif;
  --font-mono: 'Open Sans', ui-monospace, monospace;
  --su-mint: #10B981;
  --su-mint-2: #34D399;
  --su-mint-ink: #065F46;
  --su-tint: #EDF7F1;
  --su-ink-1: #0A0C0B;
  --su-ink-2: #141817;
  --su-cream: #EAF3EE;
  --su-cream-muted: rgba(234, 243, 238, .72);
  --su-cream-faint: rgba(234, 243, 238, .5);
  --su-shadow-xl: 0 40px 80px -32px rgba(6, 30, 22, .24), 0 8px 24px -12px rgba(6, 30, 22, .12);
}
.dark {
  --su-mint-ink: #6EE7B7;
  --su-tint: rgba(52, 211, 153, .15);
  --su-shadow-xl: 0 40px 80px -32px rgba(0, 0, 0, .6), 0 8px 24px -12px rgba(0, 0, 0, .5);
}
.dark .pill-mint { box-shadow: none; }
.dark .pill-mint:hover { box-shadow: 0 12px 26px -14px rgba(0, 0, 0, .7); }

.su-wrap { max-width: 1200px; margin: 0 auto; padding-left: 40px; padding-right: 40px; }
@media (max-width: 820px) { .su-wrap { padding-left: 20px; padding-right: 20px; } }
.band { position: relative; }

.su-display { font-family: var(--font-display); font-weight: 700; line-height: .96; letter-spacing: -.035em; text-wrap: balance; }
.su-h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 5vw, 58px); line-height: 1.0; letter-spacing: -.033em; text-wrap: balance; color: var(--ink); }
.su-lede { line-height: 1.55; text-wrap: pretty; }
.k-eyebrow { font-family: var(--font-mono); font-weight: 600; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--su-mint-ink); }

.pill-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 700; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; white-space: nowrap; text-decoration: none;
  transition: transform .2s cubic-bezier(.34,1.4,.5,1), box-shadow .2s ease, background-color .18s ease, border-color .18s ease, color .18s ease; }
.pill-btn svg { width: 19px; height: 19px; }
.pill-lg { height: 58px; padding: 0 30px; font-size: 16px; }
.pill-md { height: 50px; padding: 0 24px; font-size: 15px; }
.pill-mint { background: var(--su-mint); color: #fff; box-shadow: 0 12px 26px -10px color-mix(in srgb, var(--su-mint) 62%, transparent); }
.pill-mint:hover { background: var(--accent); color: #fff; transform: translateY(-3px) scale(1.015); box-shadow: 0 20px 40px -12px color-mix(in srgb, var(--su-mint) 62%, transparent); }
.pill-mint:active { transform: translateY(-1px); }
.pill-ghost { background: var(--surface); color: var(--ink); border-color: var(--hairline-strong); }
.pill-ghost:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow-card); }

.arrow-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: var(--su-mint-ink); text-decoration: none; transition: gap .18s ease; }
.arrow-link svg { width: 18px; height: 18px; }
.arrow-link:hover { gap: 12px; color: var(--su-mint-ink); }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-chip { display: inline-flex; align-items: center; gap: 8px; height: 36px; padding: 0 14px 0 12px;
  border-radius: 999px; background: var(--surface); border: 1px solid var(--hairline); box-shadow: var(--shadow-soft);
  font-size: 13px; font-weight: 600; color: var(--muted); }
.trust-chip svg { width: 17px; height: 17px; }
.trust-chip.rating { background: var(--su-tint); border-color: transparent; color: var(--su-mint-ink); }

[data-reveal].rv { opacity: 0; transform: translateY(30px); }
[data-reveal].rv.is-in { opacity: 1; transform: none;
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.34,1.32,.5,1); }
[data-reveal].rv[data-delay="1"].is-in { transition-delay: .08s; }
[data-reveal].rv[data-delay="2"].is-in { transition-delay: .16s; }
[data-reveal].rv[data-delay="3"].is-in { transition-delay: .24s; }
[data-reveal].rv[data-delay="4"].is-in { transition-delay: .32s; }

/* ---- hero ---- */
.hero-band { position: relative; overflow: hidden; padding-top: 76px; padding-bottom: 88px; background: var(--surface); }
.hero-grad { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; display: block;
  filter: blur(1px) saturate(1.12) contrast(1.04); opacity: .92;
  -webkit-mask-image: radial-gradient(128% 112% at 112% -12%, #000 24%, rgba(0,0,0,.45) 50%, transparent 72%);
          mask-image: radial-gradient(128% 112% at 112% -12%, #000 24%, rgba(0,0,0,.45) 50%, transparent 72%); }
@media (max-width: 940px) {
  .hero-grad { opacity: .58; -webkit-mask-image: radial-gradient(140% 90% at 90% -10%, #000 20%, transparent 66%); mask-image: radial-gradient(140% 90% at 90% -10%, #000 20%, transparent 66%); }
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: 56px; align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: 44px; } }

.hero-title { font-size: clamp(30px, 7.8vw, 82px); color: var(--ink); margin-top: 22px; }
.hero-title em { font-style: normal; color: var(--su-mint); }
.hero-sub { font-size: clamp(17px, 2vw, 20px); color: var(--muted); margin-top: 22px; max-width: 32ch; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 32px; }

.hero-object { position: relative; }
.donate-card { position: relative; z-index: 1; background: var(--surface); border: 1px solid var(--hairline);
  border-radius: 28px; box-shadow: var(--su-shadow-xl); overflow: hidden; }
.donate-head { padding: 22px 26px 16px; }
.donate-head .kick { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono);
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--su-mint-ink); }
.donate-head .kick svg { width: 15px; height: 15px; }
.donate-head h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -.02em; color: var(--ink); margin-top: 9px; }
.donate-head p { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.gb-mount { padding: 6px 22px 6px; min-height: 250px; display: flex; justify-content: center; align-items: flex-start; }
.gb-mount givebutter-widget { width: 100%; max-width: 440px; margin: 0 auto; }
.donate-foot { padding: 4px 26px 24px; }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12.5px; color: var(--faint); margin-top: 14px; }
.secure-note svg { width: 15px; height: 15px; color: var(--su-mint); }
.crypto-toggle { display: flex; align-items: center; gap: 8px; width: 100%; height: 50px; }

.float-badge { position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px;
  padding: 12px 15px; border-radius: 16px; background: var(--surface); box-shadow: var(--shadow-lift);
  border: 1px solid var(--hairline); }
.float-badge .fb-ic { flex: none; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; }
.float-badge .fb-ic svg { width: 20px; height: 20px; }
.float-badge .fb-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -.02em; line-height: 1; color: var(--ink); }
.float-badge .fb-lab { display: block; font-size: 11.5px; color: var(--muted); margin-top: 3px; }
.hero-fb-1 { top: -22px; left: -26px; }
.hero-fb-2 { bottom: -20px; right: -20px; }
@media (max-width: 1080px) { .hero-fb-1 { left: -8px; } .hero-fb-2 { right: -8px; } }
@media (max-width: 460px) { .float-badge { transform: scale(.9); } .hero-fb-1 { left: -4px; top:-14px; } .hero-fb-2 { right: -4px; } }
@media (max-width: 940px) { .float-badge { display: none; } }

/* ---- trust row ---- */
.trust-row { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: var(--paper); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
@media (max-width: 720px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-cell { display: flex; align-items: flex-start; gap: 14px; padding: 30px 26px; border-right: 1px solid var(--hairline); }
.trust-cell:last-child { border-right: 0; }
@media (max-width: 720px) { .trust-cell { border-right: 0; border-bottom: 1px solid var(--hairline); padding: 22px 4px; } .trust-cell:last-child { border-bottom: 0; } }
.trust-cell .tc-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px,3vw,30px); letter-spacing: -.02em; line-height: 1; color: var(--ink); }
.trust-cell .tc-lab { font-size: 13.5px; color: var(--muted); margin-top: 6px; line-height: 1.4; }

/* ---- section scaffolding ---- */
.sec { padding-top: 96px; padding-bottom: 96px; }
.sec-head { max-width: 780px; }
.sec-sub { color: var(--muted); font-size: clamp(16px, 1.9vw, 19px); line-height: 1.6; margin-top: 15px; text-wrap: pretty; }
.sec-head .su-h2 { margin-top: 13px; }

/* ---- features (photo cards) ---- */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; }
@media (max-width: 860px) { .feat-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 480px) { .feat-grid { grid-template-columns: 1fr; } }
.feat-card { min-width: 0; transition: transform .22s cubic-bezier(.34,1.3,.5,1); }
.feat-card:hover { transform: translateY(-6px); }
.feat-card img { box-shadow: var(--shadow-card); }
.feat-body { padding: 18px 4px 0; }
.feat-title { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -.02em; color: var(--su-mint-ink); }
.feat-sub { font-size: 14.5px; color: var(--muted); margin-top: 4px; line-height: 1.45; }

/* ---- ways to support ---- */
.support-band { background: var(--paper); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 52px; }
@media (max-width: 760px) { .support-grid { grid-template-columns: 1fr; } }
.sblock { background: var(--surface); border: 1px solid var(--hairline); border-radius: 24px; padding: 32px 30px;
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
  transition: transform .22s cubic-bezier(.34,1.3,.5,1), box-shadow .22s ease; }
.sblock:hover { transform: translateY(-5px); box-shadow: var(--su-shadow-xl); }
.sblock-kick { font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--su-mint); line-height: 1.4; margin-top: 20px; }
.sblock h4 { font-family: var(--font-display); font-weight: 700; font-size: clamp(21px,2.4vw,26px); letter-spacing: -.02em; color: var(--ink); margin-top: 9px; }
.sblock p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin-top: 12px; flex: 1; }
.sblock .arrow-link { margin-top: 20px; }

.voters-banner { position: relative; margin-top: 22px; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-card); }
.voters-banner img { display: block; }
.voters-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; border-radius: 28px;
  background: linear-gradient(105deg, rgba(6,30,22,.86) 0%, rgba(6,30,22,.4) 46%, transparent 74%); }
.voters-cap { position: absolute; left: 34px; top: 50%; transform: translateY(-50%); z-index: 2; color: #fff; max-width: 60%; }
.voters-cap .vc-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px,2.6vw,28px); letter-spacing: -.02em; line-height: 1.1; }
.voters-cap .vc-sub { font-size: 14px; color: rgba(255,255,255,.85); margin-top: 8px; line-height: 1.5; }

/* ---- crypto (dark band) ---- */
.crypto-band { position: relative; overflow: hidden; color: var(--su-cream); padding-top: 96px; padding-bottom: 96px;
  background:
    radial-gradient(46% 48% at 90% 0%, color-mix(in srgb, var(--su-mint) 10%, transparent) 0%, transparent 60%),
    linear-gradient(180deg, var(--su-ink-2) 0%, var(--su-ink-1) 100%); }
.crypto-band .k-eyebrow { color: var(--su-mint-2); }
.crypto-band .su-h2 { color: #fff; }
.crypto-band .sec-sub { color: var(--su-cream-muted); }
.crypto-layout { display: grid; grid-template-columns: minmax(0, 336px) minmax(0, 1fr); gap: 32px; align-items: start; margin-top: 46px; }
@media (max-width: 900px) { .crypto-layout { grid-template-columns: 1fr; gap: 22px; } }
.coin-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; min-width: 0; }
.coin-btn { display: flex; align-items: center; gap: 13px; text-align: left; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 15px; cursor: pointer; color: #fff;
  transition: transform .18s cubic-bezier(.34,1.3,.5,1), border-color .16s ease, background .16s ease, box-shadow .16s ease; }
.coin-btn:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.09); }
.coin-btn.is-active { border-color: var(--su-mint-2); box-shadow: 0 0 0 3px color-mix(in srgb, var(--su-mint-2) 22%, transparent); background: rgba(52,211,153,.1); }
.coin-emblem { flex: none; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.92); }
.coin-emblem img { width: 24px; height: 24px; }
.coin-meta { display: flex; flex-direction: column; min-width: 0; }
.coin-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #fff; line-height: 1.2; }
.coin-tkr { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: var(--su-cream-faint); margin-top: 2px; }

.coin-detail { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.12); border-radius: 26px; overflow: hidden; min-width: 0; min-height: 320px; }
.cd-inner { display: grid; grid-template-columns: 236px minmax(0, 1fr); }
/* Higher specificity than a bare .hidden utility class so the JS-driven panel
   swap in wevote--about--crypto-selector always wins, regardless of stylesheet
   load order (kit CSS loads after Tailwind's application.css). */
.cd-inner.hidden { display: none; }
@media (max-width: 640px) { .cd-inner { grid-template-columns: 1fr; } }
.cd-qr { padding: 26px; display: flex; flex-direction: column; align-items: center; gap: 14px; background: rgba(255,255,255,.03); border-right: 1px solid rgba(255,255,255,.1); }
@media (max-width: 640px) { .cd-qr { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); } }
.cd-qr-frame { background: #fff; padding: 13px; border-radius: 18px; box-shadow: 0 22px 44px -18px rgba(0,0,0,.5); line-height: 0; }
.cd-qr-frame img { width: 158px; height: 158px; display: block; border-radius: 8px; }
.cd-scan { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--su-cream-faint); }
.cd-scan svg { width: 16px; height: 16px; }
.cd-body { padding: 32px 34px; }
.cd-eyebrow { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--su-mint-2); }
.cd-title { font-family: var(--font-display); font-weight: 700; font-size: 25px; letter-spacing: -.025em; color: #fff; margin-top: 7px; }
.cd-note { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--su-mint-2); margin-top: 14px; }
.cd-note svg { width: 16px; height: 16px; flex: none; }
.cd-addr-label { display: block; font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--su-cream-faint); margin-top: 22px; margin-bottom: 9px; }
.cd-addr { display: flex; flex-direction: column; gap: 11px; }
.cd-addr-val { display: block; width: 100%; box-sizing: border-box; font-family: var(--font-mono); font-size: 13.5px; color: #fff; background: rgba(0,0,0,.32); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 14px 16px; word-break: break-all; line-height: 1.55; }
.cd-copy { position: relative; width: 100%; box-sizing: border-box; height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 14px; border: 1.5px solid var(--su-mint-2); background: var(--su-mint-2); color: #052018; font-weight: 700; font-size: 14px; cursor: pointer; white-space: nowrap; transition: background .15s ease, transform .12s ease; }
.cd-copy:hover { background: #5ee3b3; border-color: #5ee3b3; }
.cd-copy:active { transform: translateY(1px); }
.cd-copy svg { width: 17px; height: 17px; }
.cd-instructions { font-size: 13px; color: var(--su-cream-muted); line-height: 1.55; margin-top: 20px; }

/* ---- your voice (editorial) ---- */
.voice-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .95fr); gap: 54px; align-items: start; margin-top: 50px; }
@media (max-width: 900px) { .voice-grid { grid-template-columns: 1fr; gap: 34px; } }
.voice-lead h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(21px, 2.7vw, 28px); letter-spacing: -.02em; color: var(--su-mint-ink); line-height: 1.18; margin-top: 32px; text-wrap: balance; }
.voice-lead h3:first-child { margin-top: 0; }
.voice-lead p { font-size: 16px; color: var(--muted); line-height: 1.66; margin-top: 13px; text-wrap: pretty; }
.voice-visual { position: sticky; top: 24px; }
@media (max-width: 900px) { .voice-visual { position: static; } }
.voice-visual img { display: block; }
.voice-visual > div:first-child { box-shadow: var(--su-shadow-xl); }
.voice-invest { margin-top: 18px; background: var(--surface); border: 1px solid var(--hairline); border-radius: 24px; padding: 26px; box-shadow: var(--shadow-card); }
.invest-label { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.invest-list { margin-top: 14px; display: flex; flex-direction: column; }
.invest-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--hairline); align-items: flex-start; }
.invest-item:last-child { border-bottom: 0; padding-bottom: 0; }
.invest-item strong { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--ink); }
.invest-item span { display: block; font-size: 14px; color: var(--muted); line-height: 1.5; margin-top: 3px; }
.voice-close { margin-top: 44px; font-size: clamp(19px, 2.3vw, 24px); line-height: 1.55; color: var(--ink); text-wrap: pretty; max-width: 920px; letter-spacing: -.01em; }
.voice-close strong { font-family: var(--font-display); font-weight: 700; }
.voice-close .amt-hl { color: var(--su-mint-ink); font-weight: 700; }

/* ---- CTA (bright emerald band) ---- */
.cta-band { position: relative; text-align: center; padding-top: 100px; padding-bottom: 100px; background: var(--surface); border-top: 1px solid var(--hairline); }
.cta-band .su-h2 { color: var(--ink); font-size: clamp(34px, 5.6vw, 64px); }
.cta-band p { color: var(--muted); font-size: clamp(16px, 2vw, 19px); line-height: 1.6; max-width: 620px; margin: 20px auto 0; text-wrap: pretty; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }

/* ---- footer ---- */
.su-foot { background: linear-gradient(180deg, var(--su-ink-2), var(--su-ink-1)); color: var(--su-cream); padding-top: 58px; padding-bottom: 44px; }
.foot-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 40px; align-items: start; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; gap: 26px; } }
.foot-brand { display: inline-flex; align-items: center; gap: 12px; }
.foot-mission { font-size: 14.5px; color: var(--su-cream-muted); line-height: 1.62; max-width: 46ch; margin-top: 18px; }
.foot-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.foot-badge { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 16px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); font-size: 13px; font-weight: 600; color: var(--su-cream); }
.foot-badge svg { width: 16px; height: 16px; }
.foot-legal { margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; font-size: 12.5px; color: var(--su-cream-faint); font-family: var(--font-mono); }

/* ---- mobile: tighten every band ---- */
@media (max-width: 640px) {
  .sec { padding-top: 62px; padding-bottom: 62px; }
  .hero-band { padding-top: 36px; padding-bottom: 52px; }
  .hero-grid { gap: 30px; }
  .hero-object { margin-top: 2px; }
  .crypto-band { padding-top: 66px; padding-bottom: 66px; }
  .cta-band { padding-top: 72px; padding-bottom: 72px; }
  .su-foot { padding-top: 46px; }
  .hero-title { margin-top: 16px; letter-spacing: -.03em; }
  .hero-sub { margin-top: 16px; font-size: 16px; max-width: none; }
  .hero-actions { gap: 12px; margin-top: 24px; }
  .hero-actions .pill-btn { flex: 1 1 auto; }
  .donate-head { padding: 20px 20px 14px; }
  .donate-head h3 { font-size: 20px; }
  .gb-mount { padding: 6px 16px; min-height: 0; }
  .donate-foot { padding: 4px 20px 20px; }
  .feat-grid { margin-top: 36px; }
  .support-grid { margin-top: 36px; }
  .crypto-layout { margin-top: 34px; }
  .voice-grid { margin-top: 34px; }
  .sblock { padding: 26px 22px; }
  .voters-banner img { height: 240px; }
  .voters-cap { left: 20px; right: 20px; max-width: none; }
  .cd-body { padding: 24px 22px; }
  .trust-cell { padding: 22px 6px; }
  .voice-close { margin-top: 32px; }
}
@media (max-width: 400px) {
  .coin-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-in, .hero-card-in, [data-reveal].rv { opacity: 1; transform: none; animation: none; transition: none; }
}
