:root {
  --navy-950: #071323;
  --navy-900: #0b1c31;
  --navy-800: #102a46;
  --blue: #1769e0;
  --blue-soft: #eaf2ff;
  --orange: #f38b2a;
  --orange-soft: #fff3e8;
  --green: #15966d;
  --red: #d9475c;
  --yellow: #cc8b00;
  --ink: #172033;
  --muted: #667085;
  --line: #e7eaf0;
  --surface: #ffffff;
  --page: #f5f7fb;
  --shadow: 0 18px 45px rgba(13, 32, 59, .08);
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--page); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.hidden { display: none !important; }
.mobile-only { display: none; }

.auth-screen { min-height: 100vh; display: grid; grid-template-columns: 1.15fr .85fr; background: var(--surface); }
.auth-brand { position: relative; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 44px 64px; color: white; background: radial-gradient(circle at 90% 15%, rgba(47, 132, 255, .32), transparent 34%), radial-gradient(circle at 5% 90%, rgba(243, 139, 42, .18), transparent 30%), linear-gradient(145deg, var(--navy-950), var(--navy-800)); }
.auth-brand::after { content: ""; position: absolute; width: 440px; height: 440px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; right: -150px; bottom: -160px; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.brand-pill { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.02em; font-size: 20px; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; color: white; background: linear-gradient(145deg, var(--orange), #ffb15c); box-shadow: 0 10px 25px rgba(243,139,42,.28); }
.auth-copy { position: relative; z-index: 1; max-width: 720px; }
.eyebrow { display: inline-flex; padding: 7px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #cbdcff; font-size: 11px; font-weight: 800; letter-spacing: .13em; }
.auth-copy h1 { margin: 22px 0 16px; max-width: 680px; font-size: clamp(42px, 5vw, 72px); line-height: 1.03; letter-spacing: -.055em; }
.auth-copy > p { max-width: 650px; margin: 0 0 32px; color: #b9c9dc; line-height: 1.75; font-size: 17px; }
.auth-feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; max-width: 650px; }
.auth-feature-grid div { padding: 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(255,255,255,.05); backdrop-filter: blur(8px); }
.auth-feature-grid strong, .auth-feature-grid span { display: block; }
.auth-feature-grid strong { margin-bottom: 5px; font-size: 14px; }
.auth-feature-grid span { color: #aebed1; font-size: 12px; line-height: 1.5; }
.auth-proof { position: relative; z-index: 1; color: #9eb2ca; font-size: 12px; }
.auth-panel { display: grid; place-items: center; padding: 42px; }
.auth-card { width: min(100%, 500px); }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 5px; margin-bottom: 28px; border-radius: 14px; background: #f0f3f8; }
.auth-tab { border: 0; padding: 11px; border-radius: 10px; color: var(--muted); font-weight: 700; background: transparent; }
.auth-tab.active { color: var(--ink); background: white; box-shadow: 0 4px 13px rgba(17, 24, 39, .08); }
.auth-form { display: grid; gap: 18px; }
.auth-form h2 { margin: 0 0 6px; font-size: 30px; letter-spacing: -.04em; }
.auth-form p { margin: 0; color: var(--muted); }
label { display: grid; gap: 7px; color: #344054; font-size: 13px; font-weight: 700; }
input, select, textarea { width: 100%; border: 1px solid #d8dee8; border-radius: 11px; padding: 11px 12px; color: var(--ink); outline: none; background: white; transition: border-color .15s, box-shadow .15s; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(23,105,224,.11); }
textarea { min-height: 90px; resize: vertical; }
.demo-logins { display: grid; gap: 5px; padding: 14px; border-radius: 12px; color: #556071; background: #f7f8fa; font-size: 12px; }
.demo-logins strong { color: var(--ink); }
.form-grid { display: grid; gap: 14px; }
.form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid .span-2 { grid-column: 1 / -1; }

.button { border: 0; border-radius: 10px; padding: 10px 14px; font-weight: 750; transition: transform .12s, box-shadow .12s, background .12s; }
.button:hover { transform: translateY(-1px); }
.button:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.button.primary { color: white; background: var(--blue); box-shadow: 0 8px 18px rgba(23,105,224,.2); }
.button.secondary { color: white; background: var(--orange); box-shadow: 0 8px 18px rgba(243,139,42,.2); }
.button.outline { color: var(--ink); border: 1px solid var(--line); background: white; }
.button.ghost { color: var(--blue); background: var(--blue-soft); }
.button.danger { color: var(--red); background: #fff0f2; }
.button.ghost-light { color: #d5e0ec; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.05); }
.button.small { padding: 7px 10px; font-size: 12px; }
.button.full { width: 100%; }
.icon-button { display: inline-grid; place-items: center; width: 36px; height: 36px; padding: 0; border: 0; border-radius: 10px; color: #475467; background: #f0f3f7; font-size: 21px; }

.app { min-height: 100vh; display: grid; grid-template-columns: 260px minmax(0, 1fr); }
.sidebar { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; padding: 24px 18px 18px; color: white; background: linear-gradient(180deg, var(--navy-950), var(--navy-900)); z-index: 20; }
.sidebar-header { display: flex; align-items: center; justify-content: space-between; padding: 0 8px 20px; }
.brand-pill.inverse { color: white; font-size: 18px; }
.brand-pill.inverse .brand-mark { width: 34px; height: 34px; border-radius: 10px; }
.nav { flex: 1; overflow-y: auto; display: grid; align-content: start; gap: 4px; padding-right: 4px; }
.nav-label { margin: 18px 10px 7px; color: #7188a0; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.nav-item { display: flex; align-items: center; gap: 11px; width: 100%; padding: 11px 12px; border: 0; border-radius: 11px; color: #b6c6d8; background: transparent; text-align: left; font-size: 13px; font-weight: 650; }
.nav-item span { width: 20px; text-align: center; color: #7fa0c0; font-size: 17px; }
.nav-item:hover { color: white; background: rgba(255,255,255,.06); }
.nav-item.active { color: white; background: linear-gradient(90deg, rgba(23,105,224,.95), rgba(46,124,234,.72)); box-shadow: 0 10px 22px rgba(0,0,0,.18); }
.nav-item.active span { color: white; }
.sidebar-footer { display: grid; gap: 12px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.09); }
.sidebar-user { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 10px; min-width: 0; }
.sidebar-user strong, .sidebar-user span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sidebar-user strong { display: block; font-size: 13px; }
.sidebar-user span { display: block; margin-top: 2px; color: #8fa6bd; font-size: 11px; }
.avatar { display: grid; place-items: center; flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; color: var(--blue); background: var(--blue-soft); font-weight: 850; font-size: 13px; }
.avatar.orange { color: #bb5f0c; background: var(--orange-soft); }
.avatar.dark { color: white; background: #183b60; }

.main { min-width: 0; }
.topbar { position: sticky; top: 0; z-index: 15; display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 78px; padding: 14px 30px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.9); backdrop-filter: blur(14px); }
.topbar-left { display: flex; align-items: center; gap: 12px; }
.topbar h2 { margin: 0; font-size: 20px; letter-spacing: -.025em; }
.topbar p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.topbar-actions { display: flex; align-items: center; gap: 10px; }
.profile-chip { display: flex; align-items: center; gap: 9px; border: 0; padding: 5px 8px 5px 5px; border-radius: 12px; color: var(--ink); background: #f1f4f8; font-weight: 700; }
.profile-chip .avatar { width: 32px; height: 32px; border-radius: 9px; font-size: 11px; }
.content { padding: 28px 30px 50px; }

.page-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.page-head h1 { margin: 0 0 7px; font-size: 28px; letter-spacing: -.04em; }
.page-head p { margin: 0; color: var(--muted); line-height: 1.6; }
.page-actions { display: flex; gap: 9px; flex-wrap: wrap; }
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 18px; }
.stat-card { position: relative; overflow: hidden; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 4px 15px rgba(17,24,39,.025); }
.stat-card::after { content: ""; position: absolute; right: -25px; bottom: -35px; width: 95px; height: 95px; border-radius: 50%; background: var(--blue-soft); }
.stat-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.stat-label { color: var(--muted); font-size: 12px; font-weight: 700; }
.stat-icon { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 11px; color: var(--blue); background: var(--blue-soft); font-size: 16px; }
.stat-value { position: relative; z-index: 1; margin: 12px 0 4px; font-size: 28px; font-weight: 850; letter-spacing: -.04em; }
.stat-note { position: relative; z-index: 1; color: var(--green); font-size: 11px; font-weight: 750; }
.dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .75fr); gap: 18px; }
.stack { display: grid; gap: 18px; align-content: start; }
.card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 5px 18px rgba(17,24,39,.03); }
.card-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 19px 13px; }
.card-header h3 { margin: 0; font-size: 15px; }
.card-header p { margin: 4px 0 0; color: var(--muted); font-size: 11px; }
.card-body { padding: 5px 19px 19px; }
.chart-wrap { height: 245px; padding-top: 8px; }
.chart { width: 100%; height: 100%; overflow: visible; }
.chart-grid { stroke: #e9edf3; stroke-width: 1; }
.chart-line-one { fill: none; stroke: var(--blue); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.chart-line-two { fill: none; stroke: var(--orange); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.chart-dot-one { fill: white; stroke: var(--blue); stroke-width: 3; }
.chart-dot-two { fill: white; stroke: var(--orange); stroke-width: 3; }
.chart-label { fill: #8993a3; font-size: 10px; }
.chart-legend { display: flex; gap: 16px; margin-top: 4px; color: var(--muted); font-size: 11px; }
.legend-key { display: inline-flex; align-items: center; gap: 6px; }
.legend-key::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.legend-key.orange::before { background: var(--orange); }
.wallet-hero { padding: 20px; border-radius: 15px; color: white; background: radial-gradient(circle at 100% 0%, rgba(255,255,255,.18), transparent 35%), linear-gradient(135deg, #123859, #1769e0); }
.wallet-hero span { color: #bfd4ee; font-size: 11px; }
.wallet-hero strong { display: block; margin-top: 5px; font-size: 35px; letter-spacing: -.045em; }
.wallet-hero p { margin: 7px 0 0; color: #d3e4f7; font-size: 11px; }
.list { display: grid; }
.list-item { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 11px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.list-item:last-child { border-bottom: 0; }
.list-main { min-width: 0; }
.list-main strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.list-main span { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; }
.list-side { text-align: right; }
.list-side strong, .list-side span { display: block; }
.list-side strong { font-size: 12px; }
.list-side span { margin-top: 4px; color: var(--muted); font-size: 10px; }
.empty { padding: 32px; color: var(--muted); text-align: center; }

.toolbar { display: grid; grid-template-columns: minmax(200px, 1fr) 200px 200px; gap: 10px; margin-bottom: 18px; }
.search-box { position: relative; }
.search-box input { padding-left: 38px; }
.search-box::before { content: "⌕"; position: absolute; left: 13px; top: 8px; color: var(--muted); font-size: 20px; z-index: 1; }
.member-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.member-card { display: grid; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .15s, box-shadow .15s; }
.member-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.member-head { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 12px; }
.member-head h3 { margin: 0 0 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 15px; }
.member-head p { margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); font-size: 11px; }
.verified { color: var(--blue); font-size: 15px; }
.member-meta { display: flex; flex-wrap: wrap; gap: 7px; }
.pill { display: inline-flex; align-items: center; width: fit-content; padding: 5px 8px; border-radius: 999px; color: #475467; background: #f2f4f7; font-size: 10px; font-weight: 700; }
.pill.blue { color: var(--blue); background: var(--blue-soft); }
.pill.orange { color: #b85d0a; background: var(--orange-soft); }
.pill.green { color: var(--green); background: #e9f8f2; }
.pill.red { color: var(--red); background: #fff0f2; }
.member-bio { min-height: 48px; margin: 0; color: #5d6676; font-size: 12px; line-height: 1.65; }
.member-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 12px; border-top: 1px solid var(--line); }
.member-card-footer span { color: var(--muted); font-size: 11px; }

.match-hero { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 20px; padding: 25px; margin-bottom: 18px; border-radius: var(--radius); color: white; background: radial-gradient(circle at 100% 0%, rgba(255,255,255,.15), transparent 30%), linear-gradient(135deg, var(--navy-900), #174d7d); }
.match-hero h2 { margin: 0 0 8px; font-size: 24px; }
.match-hero p { max-width: 650px; margin: 0; color: #bfd0e2; line-height: 1.6; font-size: 13px; }
.match-badge { display: grid; place-items: center; width: 98px; height: 98px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: rgba(255,255,255,.08); }
.match-badge strong { display: block; font-size: 27px; }
.match-badge span { display: block; color: #bfd0e2; font-size: 10px; }
.score { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; color: white; background: conic-gradient(var(--orange) calc(var(--score) * 1%), rgba(255,255,255,.13) 0); position: relative; }
.score::after { content: ""; position: absolute; inset: 5px; border-radius: 50%; background: var(--navy-800); }
.score strong { position: relative; z-index: 1; font-size: 12px; }
.reason-list { display: flex; flex-wrap: wrap; gap: 6px; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 13px 15px; border-bottom: 1px solid var(--line); text-align: left; font-size: 12px; }
th { color: var(--muted); background: #fafbfc; font-size: 10px; letter-spacing: .04em; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }
.table-person { display: flex; align-items: center; gap: 10px; }
.table-person strong { display: block; }
.table-person span { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; }

.event-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.event-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.event-top { min-height: 130px; display: flex; align-items: flex-end; justify-content: space-between; padding: 17px; color: white; background: radial-gradient(circle at 100% 0%, rgba(255,255,255,.22), transparent 35%), linear-gradient(135deg, #173955, #1769e0); }
.event-date { display: grid; place-items: center; width: 55px; height: 60px; border-radius: 12px; color: var(--ink); background: white; }
.event-date strong, .event-date span { display: block; text-align: center; }
.event-date strong { font-size: 22px; line-height: 1; }
.event-date span { margin-top: 4px; color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.event-body { display: grid; gap: 12px; padding: 17px; }
.event-body h3 { margin: 0; font-size: 16px; }
.event-body p { margin: 0; min-height: 41px; color: var(--muted); font-size: 11px; line-height: 1.6; }
.event-info { display: grid; gap: 6px; color: #4d5869; font-size: 11px; }
.event-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 12px; border-top: 1px solid var(--line); }
.capacity { flex: 1; }
.capacity-row { display: flex; justify-content: space-between; margin-bottom: 5px; color: var(--muted); font-size: 9px; }
.progress { height: 5px; overflow: hidden; border-radius: 999px; background: #edf0f4; }
.progress span { display: block; height: 100%; border-radius: inherit; background: var(--blue); }

.wallet-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; }
.wallet-large { padding: 28px; border-radius: var(--radius); color: white; background: radial-gradient(circle at 100% 0%, rgba(255,255,255,.2), transparent 30%), linear-gradient(145deg, #0b2742, #1769e0); box-shadow: 0 22px 50px rgba(23,105,224,.2); }
.wallet-large .balance { margin: 18px 0 8px; font-size: 48px; font-weight: 900; letter-spacing: -.06em; }
.wallet-large p { color: #c7d9ed; font-size: 12px; line-height: 1.6; }
.wallet-breakdown { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.wallet-breakdown div { padding: 13px; border: 1px solid rgba(255,255,255,.15); border-radius: 12px; background: rgba(255,255,255,.08); }
.wallet-breakdown span, .wallet-breakdown strong { display: block; }
.wallet-breakdown span { color: #bed1e7; font-size: 10px; }
.wallet-breakdown strong { margin-top: 5px; font-size: 18px; }
.transaction { display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: 11px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); }
.transaction:last-child { border-bottom: 0; }
.transaction-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; color: var(--green); background: #e9f8f2; font-weight: 900; }
.transaction-icon.redeem { color: var(--red); background: #fff0f2; }
.transaction strong { display: block; font-size: 12px; }
.transaction span { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; }
.transaction-points { font-weight: 850; color: var(--green); }
.transaction-points.redeem { color: var(--red); }

.chapter-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 15px; }
.chapter-card { padding: 19px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.chapter-card h3 { margin: 13px 0 5px; }
.chapter-card p { margin: 0; color: var(--muted); font-size: 11px; }
.chapter-card .chapter-footer { display: flex; justify-content: space-between; margin-top: 18px; padding-top: 13px; border-top: 1px solid var(--line); font-size: 11px; }
.profile-layout { display: grid; grid-template-columns: 320px minmax(0,1fr); gap: 18px; }
.profile-summary { padding: 24px; text-align: center; }
.profile-summary .avatar { width: 76px; height: 76px; margin: 0 auto 14px; border-radius: 22px; font-size: 22px; }
.profile-summary h2 { margin: 0 0 5px; }
.profile-summary p { margin: 0; color: var(--muted); font-size: 12px; }
.profile-summary .member-meta { justify-content: center; margin-top: 14px; }
.profile-form { padding: 22px; }

.modal { width: min(650px, calc(100vw - 28px)); max-height: calc(100vh - 40px); padding: 0; border: 0; border-radius: 18px; box-shadow: 0 28px 80px rgba(4,15,28,.3); }
.modal::backdrop { background: rgba(5,17,29,.55); backdrop-filter: blur(4px); }
.modal-card { margin: 0; }
.modal-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 19px 21px; border-bottom: 1px solid var(--line); }
.modal-header h3 { margin: 0; font-size: 18px; }
.modal-header p { margin: 5px 0 0; color: var(--muted); font-size: 11px; }
.modal-body { max-height: calc(100vh - 150px); overflow-y: auto; padding: 21px; }
.modal-actions { display: flex; justify-content: flex-end; gap: 9px; margin-top: 18px; }
.toast { position: fixed; right: 22px; bottom: 22px; z-index: 50; max-width: 360px; padding: 12px 15px; border-radius: 11px; color: white; background: var(--navy-900); box-shadow: var(--shadow); opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .18s, transform .18s; font-size: 12px; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast.error { background: var(--red); }

@media (max-width: 1150px) {
  .stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .member-grid, .event-grid, .chapter-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .dashboard-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .mobile-only { display: inline-grid; }
  .auth-screen { grid-template-columns: 1fr; }
  .auth-brand { min-height: 430px; padding: 30px; }
  .auth-copy h1 { font-size: 42px; }
  .auth-panel { padding: 30px 20px; }
  .app { grid-template-columns: 1fr; }
  .sidebar { position: fixed; left: 0; transform: translateX(-100%); width: 275px; transition: transform .2s; box-shadow: 20px 0 50px rgba(0,0,0,.25); }
  .sidebar.open { transform: translateX(0); }
  .topbar { padding: 12px 18px; }
  .content { padding: 22px 18px 45px; }
  .toolbar { grid-template-columns: 1fr; }
  .wallet-layout, .profile-layout { grid-template-columns: 1fr; }
  .topbar-actions .secondary { display: none; }
}

@media (max-width: 620px) {
  .auth-feature-grid, .form-grid.two, .stats-grid, .member-grid, .event-grid, .chapter-grid { grid-template-columns: 1fr; }
  .auth-brand { min-height: 520px; }
  .page-head { display: grid; }
  .match-hero { grid-template-columns: 1fr; }
  .match-badge { display: none; }
  .wallet-breakdown { grid-template-columns: 1fr; }
  .topbar p { display: none; }
}
