/* StudentLeaders — Design System v2 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #1a6b47;
  --green-light: #e8f5ee;
  --green-mid: #2d9e6b;
  --green-dark: #114430;
  --gold: #c9941a;
  --gold-light: #fdf3dc;
  --ink: #0f1410;
  --ink-mid: #3a4238;
  --muted: #7a8275;
  --border: #e2e8dc;
  --surface: #f6f7f4;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 18px;
  --red: #c0392b;
  --red-light: #fff4f4;
  --red-border: #f5c6c2;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── COUNTDOWN BANNER ── */
.countdown-banner {
  background: var(--ink);
  padding: 11px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.banner-text { font-size: 13px; color: rgba(255,255,255,0.6); letter-spacing: 0.01em; }
.countdown-units { display: flex; align-items: center; gap: 5px; }
.cd-unit {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 7px;
  padding: 3px 9px;
  text-align: center;
  min-width: 42px;
}
.cd-num { font-size: 15px; font-weight: 600; color: var(--white); line-height: 1.3; display: block; letter-spacing: 0.02em; }
.cd-label { font-size: 8px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.08em; }
.cd-sep { color: rgba(255,255,255,0.25); font-size: 14px; }
.banner-pill {
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 20px;
  letter-spacing: 0.01em;
}

/* ── NAV ── */
nav.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 62px;
}
.nav-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  color: var(--green);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; color: var(--ink-mid); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 14px;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }

/* APP NAV */
nav.app-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 62px;
}
.nav-user { display: flex; align-items: center; gap: 10px; }
.nav-user-name { font-size: 14px; font-weight: 500; color: var(--ink-mid); }
.nav-logout {
  font-size: 13px;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 13px;
  border-radius: 8px;
  transition: all 0.15s;
  cursor: pointer;
  background: none;
  font-family: inherit;
}
.nav-logout:hover { color: var(--red); border-color: var(--red-border); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); }
.btn-primary:disabled { background: var(--border); color: var(--muted); cursor: not-allowed; }
.btn-secondary { background: transparent; color: var(--ink-mid); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #a87814; }
.btn-white { background: var(--white); color: var(--green); }
.btn-white:hover { background: var(--green-light); }
.btn-ghost-white { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.18); }
.btn-danger { background: transparent; color: var(--red); border: 1px solid var(--red-border); }
.btn-danger:hover { background: var(--red-light); }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-full { width: 100%; }
.btn-lg { padding: 14px 28px; font-size: 15px; }

/* ── FORMS ── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.form-label .req { color: var(--red); margin-left: 1px; }
.form-hint { font-size: 12px; color: var(--muted); margin-top: 5px; line-height: 1.5; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,107,71,0.1);
}
.form-input.err, .form-select.err { border-color: var(--red); }
.form-input.err:focus, .form-select.err:focus { box-shadow: 0 0 0 3px rgba(192,57,43,0.1); }
.form-error { font-size: 12px; color: var(--red); margin-top: 5px; display: none; }
.form-error.on { display: block; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8275' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-textarea { min-height: 80px; resize: vertical; line-height: 1.6; }
.phone-wrap { position: relative; display: flex; align-items: center; }
.phone-prefix { position: absolute; left: 14px; font-size: 14px; color: var(--ink-mid); font-weight: 500; user-select: none; pointer-events: none; }
.phone-wrap .form-input { padding-left: 52px; }

/* OTP */
.otp-inputs { display: flex; gap: 10px; justify-content: center; margin: 20px 0; }
.otp-box {
  width: 54px; height: 60px;
  text-align: center;
  font-size: 24px; font-weight: 600;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
}
.otp-box:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,107,71,0.1); }
.otp-box.filled { border-color: var(--green); background: var(--green-light); }

/* ── CARDS ── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.card-shadow { box-shadow: var(--shadow-sm); border-color: transparent; }

/* Entry card */
.entry-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.entry-card:hover { border-color: #c8d4c0; box-shadow: var(--shadow-sm); }
.entry-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.entry-name { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.entry-school { font-size: 13px; color: var(--muted); }
.chip {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.chip-green { background: var(--green-light); color: var(--green); }
.chip-gold { background: var(--gold-light); color: var(--gold); }
.chip-red { background: var(--red-light); color: var(--red); }
.chip-muted { background: var(--surface); color: var(--muted); border: 1px solid var(--border); }

.entry-meta { margin-bottom: 14px; }
.meta-row { display: flex; gap: 6px; font-size: 13px; color: var(--ink-mid); margin-bottom: 3px; }
.meta-row b { color: var(--muted); font-weight: 400; }
.phone-hidden {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 5px 10px;
  margin-bottom: 14px;
}

/* Confirm progress */
.progress-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.dots { display: flex; gap: 5px; }
.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.2s;
}
.dot.on { background: var(--green); }
.dot.last { background: var(--gold); }
.progress-text { font-size: 12px; color: var(--muted); }
.earn-tag {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
}
.earn-30 { background: var(--green-light); color: var(--green); }
.earn-10 { background: var(--gold-light); color: var(--gold); }

.card-actions { display: flex; gap: 8px; }

/* ── STEP INDICATOR ── */
.step-bar { display: flex; align-items: center; margin-bottom: 28px; gap: 0; }
.step-dot {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; flex-shrink: 0;
  transition: all 0.2s;
}
.step-dot.active { background: var(--green); color: var(--white); }
.step-dot.done { background: var(--green); color: var(--white); }
.step-dot.idle { background: var(--border); color: var(--muted); }
.step-name { font-size: 12px; margin-left: 7px; }
.step-name.active { color: var(--green); font-weight: 500; }
.step-name.idle { color: var(--muted); }
.step-line { flex: 1; height: 1px; background: var(--border); margin: 0 10px; }
.step-line.done { background: var(--green); }

/* ── STATS ── */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px; margin-bottom: 24px; }
.stat {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 20px 18px;
}
.stat.dark { background: var(--green); border-color: var(--green); }
.stat.dark .stat-n { color: var(--white); }
.stat.dark .stat-l { color: rgba(255,255,255,0.65); }
.stat-n { font-family: 'Instrument Serif', serif; font-size: 30px; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.stat-l { font-size: 13px; color: var(--muted); }
.stat-s { font-size: 12px; color: var(--green-mid); margin-top: 3px; font-weight: 500; }

/* ── CAVEAT ── */
.caveat {
  background: var(--gold-light);
  border: 1px solid #eece80;
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 12px 15px;
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}
.caveat strong { color: var(--ink); }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  width: 100%; max-width: 400px;
  transform: translateY(10px);
  transition: transform 0.2s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-title { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.modal-sub { font-size: 14px; color: var(--muted); margin-bottom: 18px; line-height: 1.6; }
.modal-footer { display: flex; gap: 8px; margin-top: 18px; }

.reason-list { display: flex; flex-direction: column; gap: 7px; }
.reason-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
  color: var(--ink-mid);
  transition: all 0.15s;
}
.reason-opt:hover { border-color: var(--red-border); background: var(--red-light); color: var(--red); }
.reason-opt.on { border-color: var(--red); background: var(--red-light); color: var(--red); }
.reason-opt input { accent-color: var(--red); }

/* ── TOAST ── */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 2000; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast {
  background: var(--ink); color: var(--white);
  padding: 12px 16px; border-radius: var(--radius);
  font-size: 14px; line-height: 1.5;
  min-width: 220px; max-width: 320px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  opacity: 0; transform: translateY(6px);
  transition: all 0.25s; pointer-events: auto;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { background: var(--green); }
.toast.error { background: var(--red); }
.toast.gold { background: var(--gold); }

/* ── EMPTY STATE ── */
.empty {
  text-align: center; padding: 56px 20px;
  background: var(--surface); border-radius: var(--radius-lg);
  border: 1.5px dashed var(--border);
}
.empty-icon { font-size: 36px; margin-bottom: 14px; }
.empty-title { font-family: 'Instrument Serif', serif; font-size: 22px; color: var(--ink); margin-bottom: 6px; }
.empty-desc { font-size: 14px; color: var(--muted); max-width: 320px; margin: 0 auto 20px; line-height: 1.7; }

/* ── LAYOUTS ── */
.container { max-width: 960px; margin: 0 auto; padding: 0 5%; }
.container-sm { max-width: 580px; margin: 0 auto; padding: 0 5%; }
.container-xs { max-width: 420px; margin: 0 auto; padding: 0 5%; }
.divider { border: none; border-top: 1px solid var(--border); }

/* ── EARNINGS PILL ── */
.earn-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gold-light); border: 1px solid #eece80;
  border-radius: 20px; padding: 6px 14px;
  font-size: 13px; color: var(--ink-mid);
}
.earn-pill strong { font-family: 'Instrument Serif', serif; font-size: 18px; color: var(--gold); }

/* Dashboard earnings block */
.earn-block {
  background: var(--ink); border-radius: 16px; padding: 24px 28px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 28px;
}
.earn-item {}
.earn-item-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.05em; }
.earn-item-val { font-family: 'Instrument Serif', serif; font-size: 28px; line-height: 1; }
.earn-item-val.gold { color: var(--gold); }
.earn-item-val.dim { color: rgba(255,255,255,0.5); }
.earn-item-val.white { color: var(--white); }
.earn-item-sub { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 3px; }

/* Breakdown table */
.bdtable { width: 100%; border-collapse: collapse; }
.bdtable th { font-size: 11px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border); }
.bdtable td { padding: 12px 14px; font-size: 14px; color: var(--ink-mid); border-bottom: 1px solid var(--border); }
.bdtable td:last-child { font-weight: 600; color: var(--green); text-align: right; }
.bdtable tr:last-child td { border-bottom: none; }

/* Confirm header bar */
.bar {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 12px 5%; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.bar-info { font-size: 14px; color: var(--muted); }
.bar-info strong { color: var(--ink); }

/* Campaign countdown card */
.cd-card {
  background: var(--green-light); border: 1px solid rgba(26,107,71,0.15);
  border-radius: var(--radius-lg); padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-bottom: 28px;
}
.cd-card-label { font-size: 13px; color: var(--green); font-weight: 500; margin-bottom: 2px; }
.cd-card-sub { font-size: 12px; color: var(--green-mid); }
.mini-cd { display: flex; align-items: center; gap: 5px; }
.mini-unit { background: var(--green); color: var(--white); border-radius: 7px; padding: 4px 9px; font-size: 14px; font-weight: 600; min-width: 34px; text-align: center; }
.mini-sep { color: var(--green-mid); font-size: 13px; font-weight: 300; }

/* ── AUTH ── */
.auth-shell { min-height: 100vh; background: var(--surface); display: flex; flex-direction: column; }
.auth-shell nav { background: var(--white); }
.auth-body { flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  width: 100%; max-width: 400px;
  box-shadow: var(--shadow-md);
}
.auth-h { font-family: 'Instrument Serif', serif; font-size: 26px; color: var(--ink); margin-bottom: 5px; }
.auth-p { font-size: 14px; color: var(--muted); margin-bottom: 26px; line-height: 1.65; }
.tab-switch { display: flex; gap: 0; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 4px; margin-bottom: 22px; }
.tab-btn {
  flex: 1; padding: 8px; border: none; border-radius: 7px;
  font-size: 14px; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: all 0.15s; background: none; color: var(--muted);
}
.tab-btn.on { background: var(--white); color: var(--ink); font-weight: 500; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.back-btn { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--muted); cursor: pointer; background: none; border: none; font-family: inherit; padding: 0 0 18px; }
.back-btn:hover { color: var(--ink); }
.demo-note { background: var(--green-light); border: 1px solid rgba(26,107,71,0.2); border-radius: 9px; padding: 9px 13px; font-size: 12px; color: var(--green); text-align: center; margin-bottom: 18px; }
.resend { color: var(--green); cursor: pointer; font-size: 13px; }
.resend:hover { text-decoration: underline; }

/* ── SUBMIT ── */
.submit-shell { min-height: 100vh; background: var(--surface); display: flex; flex-direction: column; }
.submit-body { flex: 1; display: flex; align-items: flex-start; justify-content: center; padding: 36px 20px 60px; }
.submit-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 34px;
  width: 100%; max-width: 520px;
  box-shadow: var(--shadow-sm);
}
.form-h { font-family: 'Instrument Serif', serif; font-size: 24px; color: var(--ink); margin-bottom: 5px; }
.form-p { font-size: 14px; color: var(--muted); margin-bottom: 26px; line-height: 1.65; }
.success-wrap { text-align: center; padding: 10px 0; }
.success-icon { font-size: 44px; margin-bottom: 14px; }
.success-h { font-family: 'Instrument Serif', serif; font-size: 26px; color: var(--ink); margin-bottom: 8px; }
.success-p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.success-earn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-light); border: 1px solid #eece80;
  border-radius: 12px; padding: 12px 18px;
  font-size: 14px; color: var(--ink-mid);
  margin-bottom: 22px;
}
.success-earn strong { font-family: 'Instrument Serif', serif; font-size: 22px; color: var(--gold); }
.reject-notice {
  background: var(--red-light); border: 1px solid var(--red-border);
  border-left: 3px solid var(--red); border-radius: var(--radius);
  padding: 11px 14px; font-size: 13px; color: var(--ink-mid);
  margin-bottom: 20px; line-height: 1.6;
}
.reject-notice strong { color: var(--red); }

/* Year selector */
.year-single {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--green);
  border-radius: var(--radius);
  background: var(--green-light);
  font-size: 14px; color: var(--green); font-weight: 500;
}
.year-single span { font-size: 18px; }

/* ── ONBOARDING ── */
.onboard-shell { min-height: 100vh; background: var(--surface); display: flex; flex-direction: column; }
.onboard-body { flex: 1; display: flex; align-items: flex-start; justify-content: center; padding: 40px 20px 60px; }
.onboard-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 36px;
  width: 100%; max-width: 480px;
  box-shadow: var(--shadow-sm);
}
.onboard-eyebrow { font-size: 11px; font-weight: 600; color: var(--green); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 7px; }
.onboard-h { font-family: 'Instrument Serif', serif; font-size: 26px; color: var(--ink); margin-bottom: 5px; }
.onboard-p { font-size: 14px; color: var(--muted); margin-bottom: 26px; line-height: 1.65; }

/* ── DASHBOARD ── */
.dash-shell { min-height: 100vh; display: flex; flex-direction: column; }
.dash-body { flex: 1; padding: 36px 5% 60px; max-width: 820px; margin: 0 auto; width: 100%; }
.dash-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.dash-greeting { font-family: 'Instrument Serif', serif; font-size: clamp(22px,4vw,30px); color: var(--ink); margin-bottom: 4px; }
.dash-meta { font-size: 14px; color: var(--muted); }
.dash-acts { display: flex; gap: 10px; flex-wrap: wrap; }
.section-title { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px; }
.entry-mini {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px 20px;
}
.entry-mini-name { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.entry-mini-meta { font-size: 13px; color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .earn-block { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .card-actions { flex-direction: column; }
  .card-actions .btn { width: 100%; }
  .bar { flex-direction: column; align-items: flex-start; }
  .modal-footer { flex-direction: column-reverse; }
  .modal-footer .btn { width: 100%; }
  .dash-top { flex-direction: column; }
  .dash-acts { width: 100%; }
  .dash-acts .btn { flex: 1; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .earn-block { grid-template-columns: 1fr; }
  .otp-inputs { gap: 6px; }
  .otp-box { width: 46px; height: 54px; font-size: 22px; }
}
