/* ============================================================
   MaaVeduka App — app.css
   Forest green + golden yellow — same palette as website
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --green-deep:  #1B5E20;
  --green-mid:   #2E7D32;
  --green-light: #388E3C;
  --green-pale:  #E8F5E9;
  --green-muted: #C8E6C9;
  --yellow:      #FFD54F;
  --yellow-dark: #F9A825;
  --yellow-light:#FFF8E1;
  --white:       #FFFFFF;
  --off-white:   #FAFDF8;
  --cream:       #F5FBF5;
  --text-dark:   #1A2A1A;
  --text-mid:    #3D5A3D;
  --text-muted:  #6B7C6B;
  --border:      #D4E6D4;
  --red:         #C62828;
  --red-pale:    #FFEBEE;
  --orange:      #E65100;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 12px rgba(27,94,32,0.10);
  --shadow-md:   0 6px 28px rgba(27,94,32,0.15);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  padding-bottom: 80px; /* bottom nav space */
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, select, textarea, button { font-family: 'Poppins', sans-serif; }

/* ── TOPNAV ────────────────────────────────────────────────── */
.topnav {
  background: var(--green-deep);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.topnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  padding: 0 16px;
  max-width: 700px;
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--yellow);
}
.nav-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.nav-brand-text span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-user-pill {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 5px 12px;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-logout {
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow);
  padding: 5px 10px;
  border: 1px solid rgba(255,213,79,0.4);
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.nav-logout:hover { background: rgba(255,213,79,0.15); }

/* ── BOTTOM NAV ────────────────────────────────────────────── */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  display: flex;
  z-index: 200;
  padding: 6px 0 10px;
  max-width: 700px;
  margin: 0 auto;
}
/* Hack for fixed on mobile within max-width container */
@media (min-width: 700px) {
  .bottom-nav {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 700px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
}
.bnav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 9.5px;
  color: var(--text-muted);
  font-weight: 500;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.15s;
}
.bnav-item svg { width: 20px; height: 20px; flex-shrink: 0; }
.bnav-item.active { color: var(--green-mid); }
.bnav-item.active svg { stroke: var(--green-mid); }

/* ── PAGE BODY ─────────────────────────────────────────────── */
.page-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 0 16px;
}

/* ── PAGE HERO ─────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  padding: 22px 18px 18px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 90% 50%, rgba(255,213,79,0.08), transparent 60%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 2px;
}
.page-hero p {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
.page-hero .event-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,213,79,0.16);
  border: 1px solid rgba(255,213,79,0.35);
  border-radius: 20px;
  padding: 4px 12px;
  margin-top: 10px;
}
.page-hero .event-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4CAF50;
  flex-shrink: 0;
}
.page-hero .event-pill span {
  font-size: 10px;
  color: var(--yellow);
  font-weight: 600;
}

/* ── FLASH ─────────────────────────────────────────────────── */
.flash {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.flash-success { background: var(--green-pale); color: var(--green-deep); border-left: 4px solid var(--green-mid); }
.flash-error   { background: var(--red-pale);   color: var(--red);       border-left: 4px solid var(--red); }
.flash-info    { background: var(--yellow-light); color: var(--orange);  border-left: 4px solid var(--yellow-dark); }

/* ── CARDS ─────────────────────────────────────────────────── */
.body-pad { padding: 14px 14px 0; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.card-title {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── STAT GRID ─────────────────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 14px 12px;
  box-shadow: var(--shadow-sm);
}
.stat-card.accent {
  background: var(--green-deep);
  border-color: var(--green-deep);
}
.stat-label {
  font-size: 9px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-card.accent .stat-label { color: rgba(255,255,255,0.45); }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-top: 3px;
  line-height: 1;
}
.stat-card.accent .stat-value { color: var(--yellow); }
.stat-sub { font-size: 9.5px; color: #4CAF50; font-weight: 600; margin-top: 4px; }

/* ── SECTION TITLE ─────────────────────────────────────────── */
.section-title {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--green-deep);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  margin-top: 4px;
}

/* ── ACTION GRID ───────────────────────────────────────────── */
.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 16px;
}
.action-btn {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 13px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  transition: all 0.15s;
  box-shadow: var(--shadow-sm);
  line-height: 1.3;
  cursor: pointer;
  border: none;
  font-family: 'Poppins', sans-serif;
}
.action-btn:hover {
  border-color: var(--green-muted);
  background: var(--green-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.action-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

/* ── TRANSACTION LIST ──────────────────────────────────────── */
.txn-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 0;
  border-bottom: 1px solid #F0EDE8;
}
.txn-item:last-child { border-bottom: none; }
.txn-av {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--white); font-weight: 700;
  flex-shrink: 0;
}
.txn-av.red   { background: var(--red); }
.txn-av.yellow{ background: var(--yellow-dark); color: var(--white); }
.txn-name   { font-size: 12.5px; font-weight: 600; line-height: 1.2; }
.txn-detail { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
.txn-amount { margin-left: auto; font-size: 13px; font-weight: 700; white-space: nowrap; flex-shrink: 0; }
.cr  { color: #1B6B3A; }
.dr  { color: var(--red); }

/* ── FORMS ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 14px; }
.form-label {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--green-deep);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}
.form-label .required { color: var(--red); margin-left: 2px; }
.form-control {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font-size: 13.5px;
  color: var(--text-dark);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.12);
  background: var(--white);
}
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7C6B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
textarea.form-control { resize: vertical; min-height: 80px; }
.form-hint { font-size: 10px; color: var(--text-muted); margin-top: 4px; }

/* ── MODE CHIPS ────────────────────────────────────────────── */
.mode-row { display: flex; gap: 8px; }
.mode-chip {
  flex: 1;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  cursor: pointer;
  font-size: 10px; font-weight: 600; color: var(--green-deep);
  transition: all 0.15s;
  text-align: center;
}
.mode-chip input[type=radio] { display: none; }
.mode-chip.selected,
.mode-chip:has(input:checked) {
  border-color: var(--green-mid);
  background: var(--green-pale);
  color: var(--green-deep);
}
.mode-chip svg { width: 18px; height: 18px; }

/* ── TIER CHIPS ────────────────────────────────────────────── */
.tier-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.tier-chip {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 5px 11px;
  font-size: 11px; font-weight: 600; color: var(--green-deep);
  cursor: pointer; transition: all 0.15s;
}
.tier-chip.selected,
.tier-chip:hover { background: var(--yellow); border-color: var(--yellow-dark); color: var(--green-deep); }

/* ── PROGRESS BAR ──────────────────────────────────────────── */
.progress-wrap { margin-bottom: 14px; }
.progress-info { display: flex; justify-content: space-between; font-size: 10px; font-weight: 600; margin-bottom: 5px; }
.progress-track { height: 7px; background: #E8E4DC; border-radius: 4px; overflow: hidden; }
.progress-fill  { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--green-mid), #4CAF50); transition: width 0.3s; }
.progress-fill.warn   { background: linear-gradient(90deg, var(--yellow-dark), #FFB300); }
.progress-fill.danger { background: linear-gradient(90deg, var(--red), #E53935); }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: var(--green-deep);
  border-color: var(--yellow-dark);
  box-shadow: 0 3px 14px rgba(249,168,37,0.3);
}
.btn-primary:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-green {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn-green:hover { background: var(--green-light); border-color: var(--green-light); }
.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-mid);
}
.btn-outline:hover { background: var(--green-pale); }
.btn-danger {
  background: var(--red-pale);
  color: var(--red);
  border-color: var(--red);
}
.btn-danger:hover { background: var(--red); color: var(--white); }
.btn-full { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn svg { width: 15px; height: 15px; }

/* ── TABLES ────────────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.data-table th {
  background: var(--green-deep);
  color: var(--white);
  padding: 10px 12px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.data-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #F0EDE8;
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: #FAFDF8; }
.data-table tr:hover td { background: var(--green-pale); }

/* ── BADGES ────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
}
.badge-admin      { background: var(--green-pale);   color: var(--green-deep); border: 1px solid var(--green-muted); }
.badge-treasurer  { background: var(--yellow-light); color: var(--orange);     border: 1px solid #FFCC80; }
.badge-collection { background: #E3F2FD; color: #0D47A1; border: 1px solid #BBDEFB; }
.badge-payment    { background: #F3E5F5; color: #4A148C; border: 1px solid #CE93D8; }
.badge-service    { background: #FBE9E7; color: #BF360C; border: 1px solid #FFAB91; }
.badge-success    { background: var(--green-pale); color: var(--green-deep); border: 1px solid var(--green-muted); }
.badge-warning    { background: var(--yellow-light); color: var(--orange); border: 1px solid #FFCC80; }
.badge-danger     { background: var(--red-pale); color: var(--red); border: 1px solid #FFCDD2; }
.badge-info       { background: #E3F2FD; color: #0D47A1; border: 1px solid #BBDEFB; }

/* ── RECEIPT CARD ──────────────────────────────────────────── */
.receipt-card {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border-radius: var(--radius-lg);
  padding: 18px;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.receipt-card::before {
  content: '🌿';
  position: absolute;
  font-size: 5rem;
  right: -12px;
  bottom: -12px;
  opacity: 0.08;
  line-height: 1;
}
.receipt-num {
  font-family: 'Poppins', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.receipt-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.receipt-donor {
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
}
.receipt-event { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 3px; }
.receipt-tier {
  display: inline-block;
  background: rgba(255,213,79,0.2);
  border: 1px solid rgba(255,213,79,0.4);
  color: var(--yellow);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 8px;
}

/* ── LOGIN PAGE ────────────────────────────────────────────── */
body.login-body {
  padding-bottom: 0;
  background: linear-gradient(145deg, var(--green-deep) 0%, var(--green-mid) 55%, #33691E 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-wrap {
  width: 100%;
  max-width: 420px;
  padding: 24px 16px;
}
.login-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 36px 28px;
  backdrop-filter: blur(12px);
}
.login-logo {
  text-align: center;
  margin-bottom: 24px;
}
.login-logo img {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--yellow);
  margin: 0 auto 12px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
}
.login-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--yellow);
  text-align: center;
}
.login-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}
.login-divider {
  width: 50px; height: 2px;
  background: var(--yellow);
  margin: 16px auto;
  opacity: 0.6;
  border-radius: 2px;
}
.login-input {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  color: var(--white);
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.login-input::placeholder { color: rgba(255,255,255,0.3); }
.login-input:focus { border-color: var(--yellow); }
.login-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 7px;
}
.login-group { margin-bottom: 18px; }
.login-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  border: none;
  border-radius: var(--radius-md);
  padding: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--green-deep);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(249,168,37,0.4);
  margin-top: 6px;
  transition: all 0.2s;
}
.login-btn:hover { filter: brightness(1.06); transform: translateY(-1px); }
.login-error {
  background: rgba(198,40,40,0.2);
  border: 1px solid rgba(198,40,40,0.4);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #FFCDD2;
  font-size: 13px;
  margin-bottom: 16px;
}
.login-hint {
  font-size: 10.5px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 16px;
}
.otp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.otp-input {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 14px 6px;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  outline: none;
  transition: border-color 0.2s;
}
.otp-input:focus { border-color: var(--yellow); }

/* ── SEARCH BOX ────────────────────────────────────────────── */
.search-wrap {
  position: relative;
  margin-bottom: 14px;
}
.search-wrap input {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 11px 40px 11px 14px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.18s;
}
.search-wrap input:focus { border-color: var(--green-mid); }
.search-wrap svg {
  position: absolute;
  right: 13px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  stroke: var(--text-muted);
  pointer-events: none;
}

/* ── EVENT NUMBER CARD ─────────────────────────────────────── */
.event-number-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  border: 1px solid var(--green-muted);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  font-family: 'Poppins', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 1px;
}

/* ── EMPTY STATE ───────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}
.empty-icon { font-size: 2.5rem; margin-bottom: 10px; }
.empty-state p { font-size: 13px; }

/* ── UTILITIES ─────────────────────────────────────────────── */
.fw-700 { font-weight: 700; }
.text-green  { color: var(--green-mid); }
.text-red    { color: var(--red); }
.text-yellow { color: var(--yellow-dark); }
.text-muted  { color: var(--text-muted); font-size: 12px; }
.mt-8  { margin-top: 8px; }
.mt-14 { margin-top: 14px; }
.mb-0  { margin-bottom: 0 !important; }
.text-center { text-align: center; }
.divider-sm {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--yellow));
  border-radius: 2px;
  margin: 10px 0;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 480px) {
  .stat-grid    { grid-template-columns: 1fr 1fr; }
  .action-grid  { grid-template-columns: repeat(3, 1fr); }
  .stat-value   { font-size: 1.3rem; }
  body          { font-size: 14px; }
}
