:root {
    --ink: #101b3a;
    --muted: #667394;
    --muted-strong: #52607f;
    --line: #dce3f1;
    --surface: rgba(255, 255, 255, .86);
    --surface-solid: #ffffff;
    --surface-soft: #f6f8fd;
    --page: #f7f9ff;
    --primary: #5b43e6;
    --primary-2: #7c3aed;
    --primary-3: #2f80ed;
    --blue: #2f80ed;
    --green: #22a65a;
    --orange: #f59e0b;
    --purple: #7c3aed;
    --shadow-sm: 0 8px 24px rgba(30, 48, 94, .08);
    --shadow: 0 20px 54px rgba(33, 47, 92, .12);
    --shadow-strong: 0 26px 72px rgba(60, 55, 140, .16);
    --radius: 22px;
}

* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; }
body {
    min-height: 100vh;
    margin: 0;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 84% 0%, rgba(123, 92, 246, .11), transparent 26rem),
        radial-gradient(circle at 10% 18%, rgba(47, 128, 237, .07), transparent 30rem),
        linear-gradient(180deg, #fbfcff 0%, var(--page) 58%, #f3f6fc 100%);
    overflow-x: hidden;
}

a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
svg { display: block; }

.page-backdrop { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.backdrop-shape { position: absolute; border-radius: 46% 54% 59% 41% / 51% 44% 56% 49%; filter: blur(.2px); }
.shape-one {
    width: 620px; height: 390px; top: 74px; right: -155px;
    background: linear-gradient(135deg, rgba(111, 90, 246, .10), rgba(79, 134, 247, .04));
    transform: rotate(-10deg);
}
.shape-two {
    width: 500px; height: 320px; top: 155px; left: 20%;
    background: linear-gradient(135deg, rgba(174, 195, 255, .10), rgba(130, 102, 246, .04));
    transform: rotate(11deg);
}
.backdrop-dot { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: rgba(94, 93, 200, .11); }
.dot-one { top: 136px; left: 39%; }
.dot-two { top: 232px; right: 15%; width: 16px; height: 16px; background: rgba(255,255,255,.85); box-shadow: 0 0 0 1px rgba(113,118,197,.08); }
.dot-three { top: 98px; right: 32%; width: 7px; height: 7px; }

.site-shell { width: min(1480px, calc(100% - 44px)); margin: 0 auto; }
.site-header {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid rgba(219, 225, 239, .72);
}
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; min-width: 0; }
.brand-logo { width: 48px; height: 48px; border-radius: 14px; box-shadow: var(--shadow-sm); }
.brand-copy { display: grid; gap: 1px; min-width: 0; }
.brand-copy strong { font-size: 1.18rem; letter-spacing: -.035em; }
.brand-copy small { color: var(--muted); font-size: .75rem; font-weight: 650; }
.header-actions { display: flex; align-items: center; gap: 9px; }
.icon-button, .header-link {
    min-height: 42px;
    border: 1px solid rgba(214, 222, 239, .95);
    border-radius: 13px;
    background: rgba(255,255,255,.76);
    box-shadow: 0 6px 18px rgba(42, 58, 101, .04);
}
.icon-button {
    width: 42px; display: grid; place-items: center; padding: 0; cursor: pointer;
}
.icon-button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.moon-icon { display: none; }
.header-link { display: inline-flex; align-items: center; padding: 0 14px; text-decoration: none; font-size: .84rem; font-weight: 800; }
.header-link-primary { border-color: transparent; color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-2)); box-shadow: 0 10px 24px rgba(91,67,230,.22); }
.header-link:hover, .icon-button:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.hero {
    display: grid;
    grid-template-columns: minmax(540px, .96fr) minmax(520px, 1.04fr);
    gap: 40px;
    align-items: center;
    padding: 54px 0 28px;
}
.eyebrow, .section-kicker {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--primary); font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--blue)); box-shadow: 0 0 0 5px rgba(91,67,230,.10); }
.hero h1 { margin: 10px 0 12px; font-size: clamp(3rem, 4.8vw, 4.8rem); line-height: .98; letter-spacing: -.065em; }
.hero-copy p { max-width: 560px; margin: 0; color: var(--muted-strong); font-size: clamp(1rem, 1.6vw, 1.18rem); line-height: 1.65; }
.hub-controls { align-self: center; }
.search-box {
    display: flex; align-items: center; gap: 13px; width: 100%; min-height: 58px; padding: 0 14px 0 18px;
    border: 1px solid rgba(209, 219, 238, .95); border-radius: 17px; background: rgba(255,255,255,.88);
    box-shadow: 0 14px 32px rgba(45, 59, 100, .08); backdrop-filter: blur(18px);
}
.search-box > svg { width: 22px; height: 22px; flex: 0 0 22px; fill: none; stroke: #63708d; stroke-width: 2; stroke-linecap: round; }
.search-box input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: .96rem; }
.search-box input::placeholder { color: #8c96af; }
.search-box:focus-within { border-color: rgba(91,67,230,.5); box-shadow: 0 0 0 4px rgba(91,67,230,.09), 0 16px 36px rgba(45,59,100,.09); }
kbd { padding: 5px 8px; border: 1px solid #dce2ee; border-radius: 8px; background: #fbfcff; color: #7a849e; font-family: inherit; font-size: .73rem; font-weight: 800; box-shadow: inset 0 -1px 0 #e3e7ef; white-space: nowrap; }
.filter-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.filter-chip {
    display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 13px;
    border: 1px solid rgba(209,218,236,.95); border-radius: 12px; background: rgba(255,255,255,.78);
    color: #35415f; font-size: .8rem; font-weight: 800; cursor: pointer; box-shadow: 0 6px 15px rgba(42,58,101,.035);
    transition: .18s ease;
}
.filter-chip svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.filter-chip:hover { border-color: rgba(91,67,230,.35); transform: translateY(-1px); }
.filter-chip.is-active { color: #fff; border-color: transparent; background: linear-gradient(135deg, var(--primary), var(--primary-2)); box-shadow: 0 10px 22px rgba(91,67,230,.20); }

.stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; padding: 2px 0 28px; }
.stat-card {
    min-height: 92px; display: flex; align-items: center; gap: 15px; padding: 18px 20px;
    border: 1px solid rgba(214,222,239,.88); border-radius: 19px; background: rgba(255,255,255,.74);
    box-shadow: 0 9px 25px rgba(44,58,98,.055); backdrop-filter: blur(14px);
}
.stat-card > span:last-child { display: grid; gap: 2px; }
.stat-card strong { font-size: 1.65rem; line-height: 1; letter-spacing: -.04em; }
.stat-card small { color: var(--muted); font-size: .76rem; font-weight: 700; }
.stat-icon { width: 45px; height: 45px; flex: 0 0 45px; display: grid; place-items: center; border-radius: 14px; }
.stat-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.stat-blue { color: #2563eb; background: #eef4ff; }
.stat-green { color: #16964b; background: #eaf9ef; }
.stat-purple { color: #7c3aed; background: #f4edff; }
.stat-orange { color: #e48607; background: #fff5df; }

.apps-section { padding: 10px 0 54px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin: 0 2px 18px; }
.section-heading h2 { margin: 4px 0 0; font-size: clamp(1.55rem, 2.4vw, 2rem); letter-spacing: -.035em; }
.result-count { color: var(--muted); font-size: .78rem; font-weight: 800; }
.app-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 15px; }
.app-card {
    position: relative; min-width: 0; min-height: 318px; display: flex; flex-direction: column; overflow: hidden;
    padding: 18px; border: 1px solid rgba(212,220,237,.92); border-radius: var(--radius);
    background: rgba(255,255,255,.88); box-shadow: 0 10px 28px rgba(40,55,96,.065); backdrop-filter: blur(16px);
    opacity: 0; transform: translateY(12px); animation: cardIn .46s ease forwards; animation-delay: calc(var(--stagger, 0) * 42ms);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, opacity .2s ease;
}
.app-card::before {
    content: ""; position: absolute; width: 170px; height: 170px; right: -95px; bottom: -95px; border-radius: 50%;
    background: radial-gradient(circle, rgba(91,67,230,.08), transparent 68%); pointer-events: none;
}
.app-card:hover { transform: translateY(-4px); border-color: rgba(91,67,230,.27); box-shadow: var(--shadow); }
.app-card.is-featured {
    border-color: rgba(100, 72, 233, .38);
    background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(246,242,255,.92));
    box-shadow: 0 16px 36px rgba(92,68,218,.12);
}
.app-card.is-featured::after {
    content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .55;
    background: linear-gradient(135deg, rgba(124,58,237,.06), transparent 40%, rgba(47,128,237,.05));
}
.featured-badge {
    position: absolute; z-index: 2; top: 10px; right: 10px; padding: 5px 8px; border-radius: 999px;
    color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-2)); font-size: .61rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(91,67,230,.24);
}
.card-main { position: relative; z-index: 1; display: flex; flex-direction: column; min-height: 0; flex: 1; }
.app-icon-wrap { position: relative; width: 66px; height: 66px; flex: 0 0 66px; margin-bottom: 15px; }
.app-icon-image, .app-icon-generated { width: 66px; height: 66px; border-radius: 17px; box-shadow: 0 10px 23px rgba(34,51,95,.14); }
.app-icon-image { display: block; object-fit: cover; background: #fff; }
.app-icon-generated { display: grid; place-items: center; color: #fff; background: linear-gradient(145deg,#1d4ed8,#0ea5a4); font-size: 1.2rem; font-weight: 900; }
.rx-icon { background: linear-gradient(145deg,#0d7668,#0f4d47); font-family: Georgia, serif; font-size: 1.5rem; font-style: italic; }
.pdf-icon { color: #075ea8; background: linear-gradient(145deg,#f7fbff,#dceeff); }
.pdf-icon svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.education-badge {
    position: absolute; right: -7px; top: -7px; width: 29px; height: 29px; display: grid; place-items: center; border: 2px solid #fff;
    border-radius: 9px; color: #fff; background: linear-gradient(135deg,#5b43e6,#7c3aed); box-shadow: 0 7px 16px rgba(74,57,180,.3);
}
.education-badge svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card-copy { min-width: 0; }
.card-title-row { display: flex; align-items: flex-start; gap: 8px; }
.card-title-row h3 { min-width: 0; flex: 1; margin: 0; font-size: 1rem; line-height: 1.22; letter-spacing: -.025em; }
.status-pill { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 5px; padding: 4px 7px; border-radius: 999px; font-size: .60rem; font-weight: 900; white-space: nowrap; }
.status-pill::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.status-live { color: #148846; background: #e8f8ee; }
.status-installed { color: #187c42; background: #ecf8f0; }
.status-available { color: #2d61cf; background: #edf3ff; }
.status-setup { color: #b57000; background: #fff4db; }
.app-category { display: inline-block; margin-top: 7px; color: var(--primary); font-size: .66rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.app-description { margin: 9px 0 10px; color: var(--muted-strong); font-size: .75rem; line-height: 1.48; }
.app-location { min-width: 0; display: flex; align-items: center; gap: 6px; margin: 0; color: #7a86a1; font-size: .66rem; line-height: 1.3; }
.app-location svg { width: 13px; height: 13px; flex: 0 0 13px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.app-location span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.card-footer { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 16px; padding-top: 13px; border-top: 1px solid rgba(221,226,238,.8); }
.product-signature { min-width: 0; display: inline-flex; align-items: center; gap: 6px; color: #66718d; font-size: .64rem; font-weight: 800; }
.product-signature img { width: 20px; height: 20px; border-radius: 6px; }
.launch-button { flex: 0 0 auto; min-height: 35px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 0 10px; border: 1px solid #ccd7ef; border-radius: 10px; background: #fff; color: #2459c7; text-decoration: none; font-size: .72rem; font-weight: 900; box-shadow: 0 4px 12px rgba(39,61,111,.04); }
.launch-button svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.launch-button:hover { border-color: rgba(91,67,230,.42); transform: translateY(-1px); }
.launch-primary { color: #fff; border-color: transparent; background: linear-gradient(135deg,var(--primary),var(--primary-2)); box-shadow: 0 8px 18px rgba(91,67,230,.20); }
.app-card.is-filtered-out { display: none; }

.empty-state { max-width: 560px; margin: 36px auto 0; padding: 36px; text-align: center; border: 1px dashed #cfd8eb; border-radius: 22px; background: rgba(255,255,255,.7); }
.empty-state .empty-icon { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto 12px; border-radius: 16px; color: var(--primary); background: #f1efff; }
.empty-state .empty-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.empty-state strong { display: block; font-size: 1.05rem; }
.empty-state p { margin: 7px 0 16px; color: var(--muted); font-size: .86rem; }
.empty-state button { min-height: 38px; padding: 0 13px; border: 0; border-radius: 10px; color: #fff; background: linear-gradient(135deg,var(--primary),var(--primary-2)); font-weight: 850; cursor: pointer; }
.static-empty { margin-bottom: 54px; }

.site-footer {
    min-height: 112px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px;
    border-top: 1px solid rgba(214,221,235,.82); color: var(--muted); font-size: .75rem;
}
.footer-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; justify-self: start; }
.footer-brand img { width: 38px; height: 38px; border-radius: 11px; }
.footer-brand span { display: grid; gap: 1px; }
.footer-brand strong { color: var(--ink); font-size: .88rem; }
.footer-brand small { font-size: .62rem; }
.site-footer p { margin: 0; text-align: center; font-weight: 650; }
.footer-links { justify-self: end; display: flex; align-items: center; gap: 18px; }
.footer-links a, .status-link { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; font-weight: 750; white-space: nowrap; }
.footer-links svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #20a556; box-shadow: 0 0 0 4px rgba(32,165,86,.08); }

@keyframes cardIn { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1280px) {
    .app-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
}
@media (max-width: 1080px) {
    .hero { grid-template-columns: 1fr; gap: 26px; }
    .hero-copy p { max-width: 720px; }
    .stats { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .app-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .site-footer { grid-template-columns: 1fr 1fr; }
    .site-footer p { display: none; }
}
@media (max-width: 780px) {
    .site-shell { width: min(100% - 26px, 1480px); }
    .site-header { min-height: 76px; }
    .brand-logo { width: 42px; height: 42px; }
    .brand-copy small { display: none; }
    .header-link:not(.header-link-primary) { display: none; }
    .hero { padding-top: 38px; }
    .hero h1 { font-size: clamp(2.7rem, 12vw, 4.4rem); }
    .stats { gap: 10px; }
    .stat-card { min-height: 78px; padding: 14px; }
    .stat-icon { width: 40px; height: 40px; flex-basis: 40px; }
    .app-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
    .app-card { min-height: 308px; padding: 16px; }
    .site-footer { min-height: 140px; grid-template-columns: 1fr; padding: 22px 0; gap: 18px; }
    .footer-brand, .footer-links { justify-self: center; }
}
@media (max-width: 540px) {
    .site-shell { width: min(100% - 20px, 1480px); }
    .brand-copy strong { font-size: 1rem; }
    .header-link-primary { padding-inline: 11px; }
    .hero { padding: 30px 0 22px; }
    .hero-copy p { font-size: .94rem; }
    .search-box { min-height: 54px; padding-left: 14px; }
    kbd { display: none; }
    .filter-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
    .filter-row::-webkit-scrollbar { display: none; }
    .filter-chip { flex: 0 0 auto; }
    .stats { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .stat-card { gap: 10px; padding: 12px; }
    .stat-card strong { font-size: 1.35rem; }
    .stat-card small { font-size: .68rem; }
    .section-heading { align-items: center; }
    .app-grid { grid-template-columns: 1fr; }
    .app-card { min-height: 0; }
    .card-main { display: grid; grid-template-columns: 66px minmax(0,1fr); gap: 14px; }
    .app-icon-wrap { margin-bottom: 0; }
    .card-footer { margin-top: 13px; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}

html[data-theme="dark"] {
    --ink: #edf2ff;
    --muted: #9da9c6;
    --muted-strong: #b6c0d8;
    --line: #2d3853;
    --surface: rgba(24, 32, 54, .88);
    --surface-solid: #182036;
    --surface-soft: #151d30;
    --page: #0e1424;
    color-scheme: dark;
}
html[data-theme="dark"] body {
    background: radial-gradient(circle at 84% 0%, rgba(104,74,220,.18), transparent 28rem), linear-gradient(180deg,#11182a 0%,#0d1423 100%);
}
html[data-theme="dark"] .site-header,
html[data-theme="dark"] .site-footer { border-color: rgba(69,82,116,.55); }
html[data-theme="dark"] .icon-button,
html[data-theme="dark"] .header-link:not(.header-link-primary),
html[data-theme="dark"] .search-box,
html[data-theme="dark"] .filter-chip:not(.is-active),
html[data-theme="dark"] .stat-card,
html[data-theme="dark"] .app-card,
html[data-theme="dark"] .empty-state { background: rgba(22,30,50,.88); border-color: rgba(57,70,102,.82); }
html[data-theme="dark"] .app-card.is-featured { background: linear-gradient(145deg, rgba(29,34,59,.98), rgba(35,27,67,.92)); }
html[data-theme="dark"] .launch-button:not(.launch-primary) { background: #17213a; border-color: #344566; color: #8db0ff; }
html[data-theme="dark"] kbd { background: #182036; border-color: #36425e; color: #9ba8c3; box-shadow: none; }
html[data-theme="dark"] .pdf-icon { background: #dceeff; }
html[data-theme="dark"] .moon-icon { display: block; }
html[data-theme="dark"] .sun-icon { display: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Hub donate dialog — v20260821.4 */
.hub-donate-button { border-color:#f3b4c3; background:#fff5f7; color:#b4234f; font-weight:900; cursor:pointer; }
.hub-donate-button:hover { background:#ffe9ef; border-color:#e889a1; }
.hub-donate-dialog { width:min(520px,calc(100vw - 28px)); max-width:none; padding:0; border:0; border-radius:22px; background:transparent; color:var(--ink); box-shadow:0 30px 80px rgba(15,23,42,.28); }
.hub-donate-dialog::backdrop { background:rgba(15,23,42,.46); backdrop-filter:blur(4px); }
.hub-donate-card { position:relative; padding:24px; border:1px solid var(--line); border-radius:22px; background:var(--surface-solid); }
.hub-dialog-close { position:absolute; top:14px; right:14px; width:38px; height:38px; border:1px solid var(--line); border-radius:11px; background:var(--surface-soft); color:var(--ink); font-size:1.35rem; cursor:pointer; }
.hub-donate-heading { display:flex; align-items:center; gap:12px; padding-right:45px; }
.hub-donate-heading small { display:block; color:#b4234f; font-weight:900; font-size:.65rem; letter-spacing:.12em; }
.hub-donate-heading h2 { margin:2px 0 0; font-size:1.55rem; }
.hub-donate-heart { width:48px; height:48px; display:grid; place-items:center; border-radius:15px; background:#fff0f4; color:#c52959; font-size:1.45rem; box-shadow:inset 0 0 0 1px #f5c7d3; }
.hub-donate-copy { margin:14px 0 10px; color:var(--muted); line-height:1.5; }
.hub-donate-tabs { display:flex; gap:7px; margin:12px 0; }
.hub-donate-tabs button { flex:1; min-height:40px; border:1px solid var(--line); border-radius:10px; background:var(--surface-soft); color:var(--muted-strong); font-weight:850; cursor:pointer; }
.hub-donate-tabs button.is-active { border-color:rgba(91,67,230,.35); background:rgba(91,67,230,.10); color:var(--primary); }
.hub-donate-payment { min-height:300px; display:grid; place-items:center; padding:14px; border:1px solid var(--line); border-radius:15px; background:var(--surface-soft); }
.hub-donate-panel { width:100%; display:grid; justify-items:center; gap:9px; text-align:center; }
.hub-donate-panel[hidden] { display:none !important; }
.hub-donate-panel small { color:var(--muted); line-height:1.4; }
.hub-donate-qr { padding:8px; border:1px solid var(--line); border-radius:16px; background:#fff; box-shadow:0 8px 22px rgba(15,23,42,.08); }
.hub-donate-qr img { display:block; width:min(244px,68vw); height:auto; border-radius:10px; }
.hub-paypal-mark { width:58px; height:58px; display:grid; place-items:center; border-radius:18px; background:#0f55a8; color:#fff; font-size:2rem; font-weight:900; }
.hub-paypal-link { width:min(280px,100%); min-height:42px; display:grid; place-items:center; padding:10px 14px; border-radius:10px; background:#075ea8; color:#fff; text-decoration:none; font-weight:850; }
.hub-donate-note { margin:12px 0 0; text-align:center; color:var(--muted); font-size:.76rem; }
@media (max-width:540px) {
  .hub-donate-button { min-width:40px; padding-inline:10px; }
  .hub-donate-card { padding:20px 16px; }
  .hub-donate-payment { min-height:270px; padding:10px; }
}
html[data-theme="dark"] .hub-donate-card { background:#182036; }
html[data-theme="dark"] .hub-dialog-close,
html[data-theme="dark"] .hub-donate-tabs button,
html[data-theme="dark"] .hub-donate-payment { background:#151d30; }
