:root {
    --mtch-purple: #a855f7;
    --mtch-pink: #ec4899;
    --mtch-green: #10b981;
    --mtch-gradient: linear-gradient(135deg, #a855f7, #ec4899);
    --mtch-gradient-soft: linear-gradient(135deg, rgba(168,85,247,.12), rgba(236,72,153,.12));
    --mtch-card: #ffffff;
    --mtch-radius: 16px;
    --mtch-border: #e2e8f0;
    --mtch-text: #1e293b;
    --mtch-muted: #64748b;
    --mtch-bg: #faf5ff;
}
html.dark-mode { --mtch-card: #1e293b; --mtch-border: #334155; --mtch-text: #f1f5f9; --mtch-muted: #94a3b8; --mtch-bg: #0f172a; }

/* ── Page ── */
.mtch-page { min-height: 100vh; background: var(--mtch-bg); padding-bottom: 80px; }

/* ── Top bar ── */
.mtch-topbar { background: var(--mtch-card); border-bottom: 1px solid var(--mtch-border); padding: .6rem 1.25rem; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
.mtch-logo { font-size: 1.15rem; font-weight: 800; background: var(--mtch-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: flex; align-items: center; gap: .4rem; }
.mtch-logo i { -webkit-text-fill-color: var(--mtch-purple); }
.mtch-topbar-actions { display: flex; gap: .5rem; }
.mtch-icon-btn { position: relative; width: 38px; height: 38px; border-radius: 10px; border: 1.5px solid var(--mtch-border); background: var(--mtch-bg); color: var(--mtch-purple); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all .15s; }
.mtch-icon-btn:hover { background: rgba(168,85,247,.1); border-color: var(--mtch-purple); }
.mtch-notif-badge { position: absolute; top: -4px; right: -4px; background: var(--mtch-pink); color: #fff; font-size: .6rem; font-weight: 700; min-width: 16px; height: 16px; border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 0 3px; border: 2px solid var(--mtch-card); }

/* ── Tabs ── */
.mtch-tabs { display: flex; background: var(--mtch-card); border-bottom: 2px solid var(--mtch-border); position: sticky; top: 57px; z-index: 99; overflow-x: auto; }
.mtch-tab { flex: 1; min-width: 80px; padding: .7rem .4rem; font-size: .82rem; font-weight: 600; border: none; background: none; color: var(--mtch-muted); cursor: pointer; border-bottom: 2.5px solid transparent; margin-bottom: -2px; display: flex; align-items: center; justify-content: center; gap: .3rem; transition: all .15s; white-space: nowrap; }
.mtch-tab:hover { color: var(--mtch-purple); }
.mtch-tab.active { color: var(--mtch-purple); border-bottom-color: var(--mtch-purple); }
.mtch-panel { display: none; }
.mtch-panel.active { display: block; }

/* ── Browse layout ── */
.mtch-browse-layout { display: grid; grid-template-columns: 240px 1fr; gap: 1rem; max-width: 1200px; margin: 0 auto; padding: 1rem; }

/* ── Filters ── */
.mtch-filters { background: var(--mtch-card); border: 1.5px solid var(--mtch-border); border-radius: var(--mtch-radius); padding: 1rem; height: fit-content; position: sticky; top: 115px; }
.mtch-filter-close { display: none; font-size: 1.2rem; color: var(--mtch-muted); cursor: pointer; margin-bottom: .5rem; text-align: right; }
.mtch-filter-group { margin-bottom: 1rem; }
.mtch-filter-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--mtch-muted); margin-bottom: .45rem; }
.mtch-filter-options { display: flex; flex-wrap: wrap; gap: .3rem; }
.mtch-filter-opt { padding: .25rem .6rem; border-radius: 20px; font-size: .77rem; font-weight: 600; border: 1.5px solid var(--mtch-border); background: none; color: var(--mtch-muted); cursor: pointer; transition: all .15s; }
.mtch-filter-opt:hover, .mtch-filter-opt.active { background: var(--mtch-purple); border-color: var(--mtch-purple); color: #fff; }
.mtch-age-row { display: flex; align-items: center; gap: .4rem; margin-top: .35rem; }
.mtch-age-row input, .mtch-text-input { padding: .38rem .55rem; border: 1.5px solid var(--mtch-border); border-radius: 8px; font-size: .82rem; outline: none; background: var(--mtch-bg); color: var(--mtch-text); }
.mtch-age-row input { width: 60px; text-align: center; }
.mtch-text-input { width: 100%; margin-top: .25rem; }
.mtch-apply-btn { width: 100%; margin-top: .5rem; padding: .55rem; background: var(--mtch-gradient); color: #fff; border: none; border-radius: 10px; font-size: .85rem; font-weight: 700; cursor: pointer; transition: opacity .15s; }
.mtch-apply-btn:hover { opacity: .9; }

/* ── Grid ── */
.mtch-grid-wrap { min-width: 0; }
.mtch-grid-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem; }
.mtch-count-label { font-size: .85rem; color: var(--mtch-muted); font-weight: 600; }
.mtch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 1rem; }

/* ── Profile Card ── */
.mtch-card { background: var(--mtch-card); border: 1.5px solid var(--mtch-border); border-radius: var(--mtch-radius); overflow: hidden; cursor: pointer; transition: box-shadow .18s, transform .18s; position: relative; }
.mtch-card:hover { box-shadow: 0 8px 28px rgba(168,85,247,.18); transform: translateY(-3px); }
.mtch-card-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; background: var(--mtch-gradient-soft); }
.mtch-card-placeholder { width: 100%; aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; background: var(--mtch-gradient-soft); font-size: 3.5rem; color: var(--mtch-purple); }
.mtch-card-purpose-tag { position: absolute; top: .5rem; left: .5rem; background: var(--mtch-gradient); color: #fff; font-size: .65rem; font-weight: 700; padding: .2rem .55rem; border-radius: 20px; text-transform: capitalize; }
.mtch-card-body { padding: .7rem .85rem .9rem; }
.mtch-card-name { font-size: .95rem; font-weight: 800; color: var(--mtch-text); margin-bottom: .2rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mtch-card-meta { font-size: .76rem; color: var(--mtch-muted); margin-bottom: .6rem; display: flex; flex-wrap: wrap; gap: .25rem; }
.mtch-card-meta span { display: flex; align-items: center; gap: .2rem; }
.mtch-card-actions { display: flex; gap: .45rem; }
.mtch-like-btn { flex: 1; padding: .42rem; background: var(--mtch-gradient); color: #fff; border: none; border-radius: 9px; font-size: .8rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: .3rem; transition: opacity .15s; }
.mtch-like-btn:hover { opacity: .88; }
.mtch-like-btn:disabled { opacity: .5; cursor: not-allowed; }
.mtch-pass-btn { width: 36px; height: 36px; background: #f1f5f9; border: 1.5px solid var(--mtch-border); border-radius: 9px; color: var(--mtch-muted); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .15s; }
html.dark-mode .mtch-pass-btn { background: #0f172a; }
.mtch-pass-btn:hover { background: #fee2e2; border-color: #fca5a5; color: #ef233c; }

/* ── Shared buttons ── */
.mtch-primary-btn { padding: .55rem 1.2rem; background: var(--mtch-gradient); color: #fff; border: none; border-radius: 10px; font-size: .88rem; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: .35rem; transition: opacity .15s; text-decoration: none; }
.mtch-primary-btn:hover { opacity: .88; }
.mtch-outline-btn { padding: .55rem 1.2rem; border: 1.5px solid var(--mtch-purple); border-radius: 10px; background: none; color: var(--mtch-purple); font-size: .88rem; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: .35rem; transition: all .15s; text-decoration: none; }
.mtch-outline-btn:hover { background: var(--mtch-purple); color: #fff; }
.mtch-danger-btn { padding: .5rem 1.1rem; border: 1.5px solid #ef4444; border-radius: 10px; background: none; color: #ef4444; font-size: .85rem; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: .35rem; transition: all .15s; }
.mtch-danger-btn:hover { background: #ef4444; color: #fff; }

/* ── State displays ── */
.mtch-loading { text-align: center; padding: 3rem 1rem; color: var(--mtch-muted); }
.mtch-loading p { margin-top: .75rem; font-size: .9rem; }
.mtch-empty { text-align: center; padding: 3rem 1rem; color: var(--mtch-muted); }
.mtch-empty i { font-size: 2.5rem; display: block; margin-bottom: .75rem; opacity: .3; }
.mtch-empty p { margin: 0; font-size: .9rem; }

/* ── Inner panels ── */
.mtch-panel-inner { max-width: 900px; margin: 0 auto; padding: 1.25rem; }
.mtch-panel-title { font-size: 1.05rem; font-weight: 800; color: var(--mtch-text); margin-bottom: 1.25rem; display: flex; align-items: center; gap: .5rem; }
.mtch-panel-title i { color: var(--mtch-purple); }

/* ── Matches grid ── */
.mtch-matches-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; }
.mtch-match-card { background: var(--mtch-card); border: 1.5px solid var(--mtch-border); border-radius: var(--mtch-radius); overflow: hidden; transition: box-shadow .18s; }
.mtch-match-card:hover { box-shadow: 0 6px 20px rgba(168,85,247,.14); }
.mtch-match-img { width: 100%; height: 170px; object-fit: cover; background: var(--mtch-gradient-soft); display: flex; align-items: center; justify-content: center; font-size: 2.8rem; color: var(--mtch-purple); }
.mtch-match-body { padding: .85rem 1rem 1rem; }
.mtch-match-name { font-size: .98rem; font-weight: 800; color: var(--mtch-text); margin-bottom: .25rem; }
.mtch-match-meta { font-size: .78rem; color: var(--mtch-muted); margin-bottom: .6rem; }
.mtch-match-since { font-size: .72rem; color: var(--mtch-purple); font-weight: 600; margin-bottom: .75rem; }
.mtch-match-actions { display: flex; gap: .5rem; }

/* ── Likes grid ── */
.mtch-likes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 1rem; }
.mtch-like-card { background: var(--mtch-card); border: 1.5px solid var(--mtch-border); border-radius: var(--mtch-radius); overflow: hidden; text-align: center; padding-bottom: .75rem; cursor: pointer; transition: box-shadow .18s; }
.mtch-like-card:hover { box-shadow: 0 4px 16px rgba(168,85,247,.14); }
.mtch-like-img { width: 100%; height: 125px; object-fit: cover; background: var(--mtch-gradient-soft); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: var(--mtch-purple); }
.mtch-like-name { font-size: .88rem; font-weight: 700; color: var(--mtch-text); margin: .5rem .4rem .15rem; }
.mtch-like-sub { font-size: .74rem; color: var(--mtch-muted); }

/* ── Upgrade prompt ── */
.mtch-upgrade-prompt { background: var(--mtch-gradient-soft); border: 1.5px solid rgba(168,85,247,.3); border-radius: var(--mtch-radius); padding: 2rem; text-align: center; }
.mtch-upgrade-prompt i { font-size: 2.5rem; background: var(--mtch-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; margin-bottom: .75rem; }
.mtch-upgrade-prompt h3 { font-size: 1.1rem; font-weight: 800; color: var(--mtch-text); margin-bottom: .4rem; }
.mtch-upgrade-prompt p { font-size: .88rem; color: var(--mtch-muted); margin-bottom: 1rem; }

/* ── Profile form ── */
.mtch-form-card { background: var(--mtch-card); border: 1.5px solid var(--mtch-border); border-radius: var(--mtch-radius); padding: 1.25rem; margin-bottom: 1rem; }
.mtch-form-section { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--mtch-purple); margin-bottom: .9rem; padding-bottom: .4rem; border-bottom: 1px solid var(--mtch-border); display: flex; align-items: center; gap: .4rem; }
.mtch-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.mtch-form-grid .full { grid-column: 1 / -1; }
.mtch-field { display: flex; flex-direction: column; gap: .3rem; }
.mtch-field label { font-size: .75rem; font-weight: 600; color: var(--mtch-muted); }
.mtch-field input, .mtch-field select, .mtch-field textarea { padding: .48rem .7rem; border: 1.5px solid var(--mtch-border); border-radius: 9px; font-size: .87rem; outline: none; background: var(--mtch-bg); color: var(--mtch-text); font-family: inherit; transition: border-color .15s; }
.mtch-field input:focus, .mtch-field select:focus, .mtch-field textarea:focus { border-color: var(--mtch-purple); }
.mtch-field textarea { min-height: 85px; resize: vertical; }
.mtch-visibility-row { display: flex; align-items: center; gap: .65rem; font-size: .88rem; font-weight: 600; color: var(--mtch-text); cursor: pointer; }
.mtch-visibility-row input { accent-color: var(--mtch-purple); width: 16px; height: 16px; }

/* ── Photo slots ── */
.mtch-photo-grid { display: flex; flex-wrap: wrap; gap: .5rem; }
.mtch-photo-slot { width: 78px; height: 78px; border-radius: 10px; border: 2px dashed var(--mtch-border); display: flex; align-items: center; justify-content: center; cursor: pointer; overflow: hidden; position: relative; transition: border-color .15s; }
.mtch-photo-slot:hover { border-color: var(--mtch-purple); }
.mtch-photo-slot img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.mtch-photo-slot .add-icon { font-size: 1.3rem; color: var(--mtch-purple); }
.mtch-photo-slot .remove-photo { position: absolute; top: 2px; right: 2px; background: #ef233c; color: #fff; border: none; border-radius: 50%; width: 18px; height: 18px; font-size: .6rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.mtch-hint { font-size: .74rem; color: var(--mtch-muted); margin-top: .3rem; }

/* ── Chips ── */
.mtch-chip { display: inline-flex; align-items: center; gap: .3rem; padding: .22rem .6rem; border-radius: 20px; font-size: .75rem; font-weight: 600; border: 1.5px solid var(--mtch-border); color: var(--mtch-muted); background: var(--mtch-bg); }
.mtch-chip-purple { background: rgba(168,85,247,.1); border-color: rgba(168,85,247,.3); color: var(--mtch-purple); }
.mtch-chip-pink { background: rgba(236,72,153,.1); border-color: rgba(236,72,153,.3); color: var(--mtch-pink); }
.mtch-chips { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .85rem; }

/* ── Modal ── */
.mtch-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); backdrop-filter: blur(4px); z-index: 2000; align-items: center; justify-content: center; padding: 1rem; }
.mtch-modal-overlay.open { display: flex; }
.mtch-modal-box { background: var(--mtch-card); border-radius: 20px; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.mtch-modal-header { display: flex; align-items: center; justify-content: space-between; padding: .8rem 1.1rem; border-bottom: 1px solid var(--mtch-border); position: sticky; top: 0; background: var(--mtch-card); z-index: 1; }
.mtch-modal-header span { font-size: .92rem; font-weight: 700; color: var(--mtch-text); display: flex; align-items: center; gap: .4rem; }
.mtch-modal-header i { color: var(--mtch-purple); }
.mtch-modal-close { background: #f1f5f9; border: 1.5px solid var(--mtch-border); color: #64748b; border-radius: 20px; padding: .3rem .8rem; font-size: .8rem; font-weight: 700; cursor: pointer; transition: all .15s; }
.mtch-modal-close:hover { background: #fee2e2; border-color: #fca5a5; color: #dc2626; }
.mtch-modal-body { padding: 1.25rem; }
.mtch-modal-photo { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; margin-bottom: 1rem; }
.mtch-modal-photo-placeholder { width: 100%; height: 220px; border-radius: 12px; background: var(--mtch-gradient-soft); display: flex; align-items: center; justify-content: center; font-size: 4.5rem; color: var(--mtch-purple); margin-bottom: 1rem; }
.mtch-modal-name { font-size: 1.28rem; font-weight: 900; color: var(--mtch-text); margin-bottom: .2rem; }
.mtch-modal-sub { font-size: .84rem; color: var(--mtch-muted); margin-bottom: .75rem; }
.mtch-modal-bio { font-size: .87rem; line-height: 1.7; color: var(--mtch-text); background: var(--mtch-bg); border-radius: 10px; padding: .8rem 1rem; margin-bottom: 1rem; }
.mtch-modal-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.mtch-thumb-row { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.mtch-thumb-row img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; cursor: pointer; }

/* ── Celebration ── */
.mtch-celebrate { position: fixed; inset: 0; background: rgba(0,0,0,.7); backdrop-filter: blur(8px); z-index: 3000; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.mtch-celebrate-box { background: var(--mtch-card); border-radius: 24px; padding: 2.5rem 2rem; text-align: center; max-width: 340px; width: 100%; box-shadow: 0 20px 60px rgba(168,85,247,.3); border: 1.5px solid rgba(168,85,247,.3); }
.mtch-celebrate-emoji { font-size: 3.5rem; margin-bottom: .6rem; animation: heartpulse .8s ease-in-out infinite; }
@keyframes heartpulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }
.mtch-celebrate-box h2 { font-size: 1.55rem; font-weight: 900; background: var(--mtch-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: .4rem; }
.mtch-celebrate-box p { font-size: .9rem; color: var(--mtch-muted); margin-bottom: 1.2rem; }
.mtch-celebrate-btns { display: flex; gap: .65rem; justify-content: center; flex-wrap: wrap; }

/* ── Toast ── */
.mtch-toast { position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%); background: #1e293b; color: #fff; padding: .6rem 1.2rem; border-radius: 10px; font-size: .87rem; font-weight: 600; z-index: 9999; opacity: 0; transition: opacity .3s; pointer-events: none; white-space: nowrap; }
.mtch-toast.show { opacity: 1; }
.mtch-toast.success { background: #10b981; }
.mtch-toast.error   { background: #ef4444; }

/* ── Mobile ── */
@media (max-width: 768px) {
    .mtch-browse-layout { grid-template-columns: 1fr; }
    .mtch-filters { display: none; position: fixed; bottom: 0; left: 0; right: 0; top: auto; z-index: 500; border-radius: 20px 20px 0 0; max-height: 80vh; overflow-y: auto; }
    .mtch-filters.open { display: block; }
    .mtch-filter-close { display: block; }
    .mtch-grid { grid-template-columns: repeat(2, 1fr); gap: .65rem; }
    .mtch-matches-grid { grid-template-columns: 1fr; }
    .mtch-form-grid { grid-template-columns: 1fr; }
    .mtch-form-grid .full { grid-column: 1; }
    .mtch-tab span { display: none; }
    .mtch-tab { padding: .65rem .5rem; font-size: .9rem; }
}
@media (min-width: 769px) { .mtch-filter-btn { display: none !important; } }

/* ── Medical visibility selectors ── */
.mtch-vis-sel { font-size: .78rem !important; padding: .38rem .5rem !important; color: var(--mtch-purple) !important; border-color: rgba(168,85,247,.35) !important; background: rgba(168,85,247,.05) !important; }
.mtch-vis-sel:focus { border-color: var(--mtch-purple) !important; }

/* ── Form section hint ── */
.mtch-section-hint { font-size: .68rem; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--mtch-muted); margin-left: .35rem; }

/* ── Hint text ── */
.mtch-hint { font-size: .74rem; color: var(--mtch-muted); margin-top: .3rem; line-height: 1.5; }
.mtch-hint i { color: var(--mtch-purple); margin-right: .25rem; }

/* ── Compatibility score badge ── */
.mtch-score-badge {
    position: absolute; bottom: .45rem; left: .45rem;
    background: linear-gradient(135deg, var(--mtch-purple), var(--mtch-pink));
    color: #fff; font-size: .7rem; font-weight: 700;
    padding: .22rem .55rem; border-radius: 20px;
    display: flex; align-items: center; gap: .25rem;
    box-shadow: 0 2px 8px rgba(168,85,247,.4);
    pointer-events: none;
}
.mtch-score-badge i { font-size: .65rem; }

/* ── Sort dropdown ── */
.mtch-sort-wrap { margin-left: auto; }
.mtch-sort-select {
    background: var(--mtch-card); color: var(--mtch-text);
    border: 1.5px solid rgba(168,85,247,.35); border-radius: 10px;
    padding: .45rem .75rem; font-size: .82rem; cursor: pointer;
    transition: border-color .2s;
}
.mtch-sort-select:focus { outline: none; border-color: var(--mtch-purple); }
.mtch-sort-select option { background: var(--mtch-card); }


/* === migrated from matchmaking/premium.html === */
.premium-wrap { max-width: 480px; margin: 2rem auto; padding: 1.25rem; text-align: center; }
        .premium-card { background: var(--mtch-card); border: 1.5px solid var(--mtch-border); border-radius: 20px; padding: 2.5rem 2rem; }
        .premium-hero { font-size: 3rem; margin-bottom: .75rem; }
        .premium-title { font-size: 1.5rem; font-weight: 900; background: var(--mtch-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: .4rem; }
        .premium-sub { font-size: .9rem; color: var(--mtch-muted); margin-bottom: 1.5rem; }
        .premium-status { background: rgba(16,185,129,.1); border: 1.5px solid rgba(16,185,129,.3); border-radius: 12px; padding: .75rem 1rem; font-size: .88rem; font-weight: 600; color: #10b981; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; gap: .5rem; }


/* === migrated from matchmaking/upgrade.html === */
.upgrade-wrap { max-width: 520px; margin: 2rem auto; padding: 1.25rem; }
        .upgrade-card { background: var(--mtch-card); border: 1.5px solid var(--mtch-border); border-radius: 20px; padding: 2rem; text-align: center; }
        .upgrade-hero { font-size: 3rem; margin-bottom: .75rem; }
        .upgrade-title { font-size: 1.6rem; font-weight: 900; background: var(--mtch-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: .4rem; }
        .upgrade-sub { font-size: .92rem; color: var(--mtch-muted); margin-bottom: 1.5rem; }
        .upgrade-features { text-align: left; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
        .upgrade-feature { display: flex; align-items: center; gap: .75rem; font-size: .9rem; color: var(--mtch-text); }
        .upgrade-feature i { color: var(--mtch-purple); width: 20px; text-align: center; }
        .upgrade-price { font-size: 2rem; font-weight: 900; color: var(--mtch-text); margin-bottom: 1.25rem; }
        .upgrade-price span { font-size: .9rem; color: var(--mtch-muted); font-weight: 400; }
        .upgrade-msg { font-size: .85rem; color: var(--mtch-muted); margin-top: .75rem; }
