/* ═══════════════════════════════════════════════════════════════
   enlightenMEnt Live — Mobile Design System v2
   Fraunces (display) + DM Sans (UI) + Forest green brand
   Light default / Dark manual toggle via [data-theme="dark"]
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,500;0,700;1,300&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── LIGHT TOKENS ──────────────────────────────────────────── */
:root {
  --font-body: 'DM Sans', system-ui, sans-serif;
  --m-forest:      #28724f;
  --m-forest-dark: #1a4f36;
  --m-forest-dim:  #e8f2ed;
  --m-forest-mid:  #c8dfd2;
  --m-gold:        #c9a84c;
  --m-gold-dim:    #fdf6e3;
  --m-red:         #e84444;
  --m-red-dim:     #fde8e8;
  --m-blue:        #3b7dd8;
  --m-blue-dim:    #e8f0fd;
  --m-cream:       #fafaf7;
  --m-card:        #ffffff;
  --m-bg2:         #f4f4f1;
  --m-bg3:         #ebebeb;
  --m-bd:          #e8e8e3;
  --m-tx1:         #141412;
  --m-tx2:         #4a4a44;
  --m-tx3:         #9a9a90;
  --m-shadow-sm:   0 1px 4px rgba(0,0,0,.06);
  --m-shadow:      0 4px 16px rgba(0,0,0,.08);
  --m-shadow-lg:   0 8px 32px rgba(0,0,0,.12);
  --m-radius-sm:   10px;
  --m-radius:      14px;
  --m-radius-lg:   20px;
}

/* ── DARK TOKENS ───────────────────────────────────────────── */
[data-theme="dark"] {
  --m-forest:      #4caf7d;
  --m-forest-dark: #3a9468;
  --m-forest-dim:  #1a2e22;
  --m-forest-mid:  #243d2e;
  --m-gold:        #e0bb6a;
  --m-gold-dim:    #2a2210;
  --m-red:         #f06060;
  --m-red-dim:     #2e1414;
  --m-blue:        #60a0f0;
  --m-blue-dim:    #0e1e38;
  --m-cream:       #0f1a13;
  --m-card:        #162019;
  --m-bg2:         #1e2d24;
  --m-bg3:         #243530;
  --m-bd:          #2a3d30;
  --m-tx1:         #f0f0ea;
  --m-tx2:         #b0b8ac;
  --m-tx3:         #607060;
  --m-shadow-sm:   0 1px 4px rgba(0,0,0,.3);
  --m-shadow:      0 4px 16px rgba(0,0,0,.4);
  --m-shadow-lg:   0 8px 32px rgba(0,0,0,.5);
}

/* ── BASE MOBILE RESETS ────────────────────────────────────── */
@media (max-width: 768px) {
  body { background: var(--m-cream) !important; }
  #page-content {
    background: var(--m-cream) !important;
    padding: 0 0 calc(72px + env(safe-area-inset-bottom)) 0 !important;
    overflow-x: hidden;
  }
  .m-display { font-family: 'Fraunces', serif; font-weight: 300; letter-spacing: -.02em; }
  .m-ui { font-family: 'DM Sans', sans-serif; }
  input, select, textarea { font-size: 16px !important; font-family: 'DM Sans', sans-serif !important; }
  .btn:active, .m-card:active, .m-stat-card:active, .m-quick-action:active, .m-row:active {
    transform: scale(0.97); transition: transform .1s;
  }
  * { -webkit-tap-highlight-color: transparent; }
  .scroll-area, #page-content, .modal { -webkit-overflow-scrolling: touch; }
}

/* ── SHARED COMPONENTS ─────────────────────────────────────── */
@media (max-width: 768px) {

  /* TOP BAR */
  .m-top-bar {
    height: 52px; padding: 0 16px;
    display: flex; align-items: center; justify-content: space-between;
    background: var(--m-cream);
    position: sticky; top: 0; z-index: 100;
    border-bottom: 1px solid var(--m-bd);
  }
  .m-top-bar-title {
    font-family: 'Fraunces', serif; font-size: 18px; font-weight: 500;
    color: var(--m-tx1); position: absolute; left: 50%; transform: translateX(-50%);
    white-space: nowrap; letter-spacing: -.01em;
  }
  .m-top-bar-btn {
    width: 36px; height: 36px; border-radius: 50%; background: var(--m-bg2);
    border: none; cursor: pointer; display: flex; align-items: center;
    justify-content: center; color: var(--m-tx2); flex-shrink: 0;
  }
  .m-top-bar-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
  .m-top-bar-btn.primary { background: var(--m-forest); color: #fff; }

  /* STAT GRID */
  .m-stat-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px; padding: 12px 16px 4px;
  }
  .m-stat-card {
    border-radius: var(--m-radius); padding: 16px 14px;
    display: flex; flex-direction: column; justify-content: space-between;
    min-height: 96px; position: relative; overflow: hidden;
    cursor: pointer; transition: transform .15s;
  }
  .m-stat-icon { position: absolute; top: 12px; right: 12px; opacity: 0.2; }
  .m-stat-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.5; }
  .m-stat-label {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; opacity: .65; font-family: 'DM Sans', sans-serif;
  }
  .m-stat-value {
    font-family: 'Fraunces', serif; font-size: 32px; font-weight: 500;
    line-height: 1; margin: 4px 0 2px;
  }
  .m-stat-sub { font-size: 10px; opacity: .6; font-weight: 500; font-family: 'DM Sans', sans-serif; }
  .m-stat-green { background: var(--m-forest); color: #fff; }
  .m-stat-gold  { background: var(--m-gold);   color: #fff; }
  .m-stat-red   { background: var(--m-red);    color: #fff; }
  .m-stat-blue  { background: var(--m-blue);   color: #fff; }
  .m-stat-soft  {
    background: var(--m-card); color: var(--m-tx1);
    border: 1px solid var(--m-bd); box-shadow: var(--m-shadow-sm);
  }
  .m-stat-soft .m-stat-label { color: var(--m-tx3); opacity: 1; }
  .m-stat-soft .m-stat-sub   { color: var(--m-tx3); opacity: 1; }

  /* CARD */
  .m-card {
    background: var(--m-card); border-radius: var(--m-radius);
    padding: 16px; margin: 0 16px 10px;
    box-shadow: var(--m-shadow-sm); border: 1px solid var(--m-bd);
  }
  .m-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
  .m-card-title { font-size: 13px; font-weight: 700; color: var(--m-tx1); letter-spacing: -.01em; font-family: 'DM Sans', sans-serif; }
  .m-card-action { font-size: 11px; color: var(--m-forest); font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; }

  /* SECTION LABEL */
  .m-section-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; color: var(--m-tx3); padding: 14px 16px 6px;
    font-family: 'DM Sans', sans-serif;
  }

  /* TAB BAR */
  .m-tab-bar {
    display: flex; gap: 4px; margin: 0 16px 14px;
    background: var(--m-bg2); border-radius: var(--m-radius-sm); padding: 3px;
  }
  .m-tab-btn {
    flex: 1; padding: 8px 4px; border: none; background: none;
    border-radius: 8px; font-size: 11px; font-weight: 600; color: var(--m-tx3);
    cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .15s; white-space: nowrap;
  }
  .m-tab-btn.active { background: var(--m-card); color: var(--m-forest); box-shadow: var(--m-shadow-sm); }

  /* ROW ITEM */
  .m-row {
    display: flex; align-items: center; gap: 12px; padding: 10px 0;
    border-bottom: 1px solid var(--m-bg2); cursor: pointer;
  }
  .m-row:last-child { border-bottom: none; padding-bottom: 0; }
  .m-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--m-forest-dim); display: flex; align-items: center;
    justify-content: center; font-family: 'Fraunces', serif; font-size: 14px;
    font-weight: 500; color: var(--m-forest); flex-shrink: 0;
  }
  .m-row-main { flex: 1; min-width: 0; }
  .m-row-name {
    font-size: 13px; font-weight: 600; color: var(--m-tx1);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: 'DM Sans', sans-serif;
  }
  .m-row-sub { font-size: 11px; color: var(--m-tx3); margin-top: 1px; font-family: 'DM Sans', sans-serif; }

  /* PROGRESS BAR */
  .m-progress { margin: 8px 0; }
  .m-progress-labels { display: flex; justify-content: space-between; margin-bottom: 5px; }
  .m-progress-label { font-size: 12px; color: var(--m-tx2); font-weight: 500; font-family: 'DM Sans', sans-serif; }
  .m-progress-pct { font-size: 12px; font-weight: 700; color: var(--m-tx1); font-family: 'DM Sans', sans-serif; }
  .m-progress-track { height: 6px; background: var(--m-bg2); border-radius: 10px; overflow: hidden; }
  .m-progress-fill { height: 100%; border-radius: 10px; background: var(--m-forest); transition: width .6s cubic-bezier(.4,0,.2,1); }
  .m-progress-fill.gold { background: var(--m-gold); }
  .m-progress-fill.red  { background: var(--m-red); }

  /* PILL */
  .m-pill {
    display: inline-flex; align-items: center; padding: 2px 8px;
    border-radius: 20px; font-size: 10px; font-weight: 700;
    letter-spacing: .02em; text-transform: uppercase; font-family: 'DM Sans', sans-serif;
  }
  .m-pill-green { background: var(--m-forest-dim); color: var(--m-forest); }
  .m-pill-gold  { background: var(--m-gold-dim);   color: #8a6a1a; }
  .m-pill-red   { background: var(--m-red-dim);    color: var(--m-red); }
  .m-pill-gray  { background: var(--m-bg2);         color: var(--m-tx3); }
  .m-pill-blue  { background: var(--m-blue-dim);    color: var(--m-blue); }

  /* QUICK ACTIONS GRID */
  .m-quick-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px; padding: 0 16px; margin-bottom: 16px;
  }
  .m-quick-action {
    background: var(--m-card); border: 1px solid var(--m-bd);
    border-radius: var(--m-radius); padding: 14px;
    display: flex; flex-direction: column; gap: 8px;
    cursor: pointer; transition: transform .15s; box-shadow: var(--m-shadow-sm);
  }
  .m-qa-icon {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
  }
  .m-qa-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
  .m-qa-label { font-size: 12px; font-weight: 700; color: var(--m-tx1); line-height: 1.3; font-family: 'DM Sans', sans-serif; }
  .m-qa-sub   { font-size: 10px; color: var(--m-tx3); font-family: 'DM Sans', sans-serif; }
  .m-qa-green .m-qa-icon { background: var(--m-forest-dim); color: var(--m-forest); }
  .m-qa-gold  .m-qa-icon { background: var(--m-gold-dim);   color: #8a6a1a; }
  .m-qa-blue  .m-qa-icon { background: var(--m-blue-dim);   color: var(--m-blue); }
  .m-qa-red   .m-qa-icon { background: var(--m-red-dim);    color: var(--m-red); }
  .m-qa-forest { background: var(--m-forest) !important; border-color: var(--m-forest) !important; }
  .m-qa-forest .m-qa-icon  { background: rgba(255,255,255,.15); color: #fff; }
  .m-qa-forest .m-qa-label { color: #fff; }
  .m-qa-forest .m-qa-sub   { color: rgba(255,255,255,.6); }

  /* HERO CARD */
  .m-hero {
    margin: 8px 16px 12px;
    background: linear-gradient(135deg, var(--m-forest-dark) 0%, var(--m-forest) 100%);
    border-radius: var(--m-radius-lg); padding: 20px; color: #fff;
    position: relative; overflow: hidden;
  }
  .m-hero::after {
    content: ''; position: absolute; right: -20px; top: -20px;
    width: 120px; height: 120px; background: rgba(255,255,255,.06);
    border-radius: 50%; pointer-events: none;
  }
  .m-hero-label {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; opacity: .55; margin-bottom: 2px; font-family: 'DM Sans', sans-serif;
  }
  .m-hero-value { font-family: 'Fraunces', serif; font-size: 40px; font-weight: 300; line-height: 1; margin-bottom: 4px; }
  .m-hero-sub   { font-size: 12px; opacity: .6; font-family: 'DM Sans', sans-serif; }

  /* TABLE SCROLL */
  .m-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -16px; padding: 0 16px; }
  .m-table-scroll table { font-size: 12px; min-width: 480px; }
  .m-table-scroll th, .m-table-scroll td { padding: 8px 10px; white-space: nowrap; }

  /* SAFE AREA */
  #page-content {
    padding-bottom: calc(72px + env(safe-area-inset-bottom)) !important;
  }

  /* DARK MODE TOGGLE */
  .m-toggle { position: relative; display: inline-block; width: 48px; height: 28px; }
  .m-toggle input { opacity: 0; width: 0; height: 0; }
  .m-toggle-track {
    position: absolute; inset: 0; background: var(--m-bg3);
    border-radius: 28px; transition: background .2s; cursor: pointer;
  }
  .m-toggle-track::before {
    content: ''; position: absolute; left: 3px; top: 3px;
    width: 22px; height: 22px; background: #fff; border-radius: 50%;
    transition: transform .2s; box-shadow: 0 1px 4px rgba(0,0,0,.2);
  }
  .m-toggle input:checked + .m-toggle-track { background: var(--m-forest); }
  .m-toggle input:checked + .m-toggle-track::before { transform: translateX(20px); }
}

  /* ── PAGE WRAPPER ─────────────────────────────────────────── */
  .mob-page {
    padding: 0 0 calc(var(--tab-h, 72px) + 16px);
    animation: mob-page-in 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }

  @keyframes mob-page-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .mob-loading {
    padding: 60px 20px;
    text-align: center;
    color: var(--tx-3, #7a9a84);
    font-size: 14px;
    font-family: var(--font-body, 'Outfit', system-ui);
  }

  /* ── HERO CARD ────────────────────────────────────────────── */
  .mob-hero {
    margin: 16px 16px 12px;
    background: var(--forest, #28724f);
    border-radius: 26px;
    padding: 22px 22px 20px;
    position: relative;
    overflow: hidden;
  }

  .mob-hero::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
  }

  .mob-hero::after {
    content: '';
    position: absolute;
    bottom: -20px; right: 20px;
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
  }

  .mob-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    font-family: var(--font-body, 'Outfit', system-ui);
    position: relative;
    z-index: 1;
  }

  .mob-hero-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.60);
    margin-bottom: 6px;
    font-family: var(--font-body, 'Outfit', system-ui);
    position: relative;
    z-index: 1;
  }

  .mob-hero-number {
    font-family: Georgia, 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
  }

  .mob-hero-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.62);
    font-family: var(--font-body, 'Outfit', system-ui);
    position: relative;
    z-index: 1;
  }

  /* ── STAT GRID ────────────────────────────────────────────── */
  .mob-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 16px;
    margin-bottom: 4px;
  }

  .mob-stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 14px 14px 12px;
    border: 0.5px solid #e0e8e2;
    box-shadow: 0 1px 3px rgba(15,36,25,0.06), 0 4px 16px rgba(15,36,25,0.04);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1);
    -webkit-tap-highlight-color: transparent;
  }

  .mob-stat-card:active { transform: scale(0.97); }
  .mob-stat-clickable {
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .mob-stat-clickable:active {
    transform: scale(0.96);
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  }
  .mob-stat-clickable::after {
    content: '↗';
    position: absolute;
    top: 8px; right: 10px;
    font-size: 11px;
    color: var(--tx-3);
  }

  .mob-stat-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--forest, #28724f);
    border-radius: 14px 14px 0 0;
  }

  .mob-accent-gold   { background: #b8860b !important; }
  .mob-accent-amber  { background: #d97706 !important; }
  .mob-accent-blue   { background: #2563eb !important; }
  .mob-accent-red    { background: #dc2626 !important; }
  .mob-accent-green  { background: var(--forest, #28724f) !important; }
  .mob-accent-purple { background: #7c3aed !important; }

  .mob-stat-lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--tx-3, #7a9a84);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 8px;
    font-family: var(--font-body, 'Outfit', system-ui);
  }

  .mob-stat-val {
    font-family: Georgia, 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--tx-1, #0d1f12);
    line-height: 1.15;
    margin-top: 2px;
  }

  .mob-stat-delta {
    font-size: 11px;
    font-weight: 600;
    color: var(--forest, #28724f);
    margin-top: 3px;
    font-family: var(--font-body, 'Outfit', system-ui);
  }

  .mob-stat-delta.neg { color: #dc2626; }

  /* ── CHIP ROW ─────────────────────────────────────────────── */
  .mob-chip-row {
    display: flex;
    gap: 8px;
    padding: 12px 16px 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .mob-chip-row::-webkit-scrollbar { display: none; }

  .mob-chip {
    flex-shrink: 0;
    height: 34px;
    padding: 0 16px;
    border-radius: 17px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(40,114,79,0.25);
    background: transparent;
    color: var(--tx-2, #3a5443);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s;
    font-family: var(--font-body, 'Outfit', system-ui);
    -webkit-tap-highlight-color: transparent;
  }

  .mob-chip.active {
    background: var(--forest, #28724f);
    color: #fff;
    border-color: var(--forest, #28724f);
  }

  .mob-chip:active { transform: scale(0.95); }

  /* ── DIVIDER ──────────────────────────────────────────────── */
  .mob-divider {
    height: 8px;
    background: rgba(238,243,239,1);
    margin: 10px 0;
  }

  /* ── SECTION HEADER ───────────────────────────────────────── */
  .mob-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px 8px;
  }

  .mob-section-title {
    font-family: Georgia, 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--tx-1, #0d1f12);
  }

  .mob-section-action {
    font-size: 13px;
    font-weight: 600;
    color: var(--forest, #28724f);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body, 'Outfit', system-ui);
    padding: 4px 0;
    -webkit-tap-highlight-color: transparent;
  }

  /* ── LIST ROWS ────────────────────────────────────────────── */
  .mob-list {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .mob-list-row {
    background: #fff;
    border-radius: 14px;
    padding: 13px 14px;
    border: 0.5px solid #e0e8e2;
    box-shadow: 0 1px 3px rgba(15,36,25,0.06), 0 4px 16px rgba(15,36,25,0.04);
    display: flex;
    align-items: center;
    gap: 13px;
    cursor: pointer;
    transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1);
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
    min-height: 62px;
    /* Required for swipe-to-reveal */
    touch-action: pan-y;
  }

  .mob-list-row:active { transform: scale(0.98); }

  .mob-list-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(40,114,79,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--forest, #28724f);
    flex-shrink: 0;
    font-family: Georgia, 'Playfair Display', serif;
    letter-spacing: 0.02em;
  }

  .mob-avatar-gray   { background: rgba(107,114,128,0.10); color: #6b7280; }
  .mob-avatar-blue   { background: rgba(37,99,235,0.10);   color: #2563eb; }
  .mob-avatar-gold   { background: rgba(184,134,11,0.10);  color: #b8860b; }
  .mob-avatar-green  { background: rgba(40,114,79,0.10);   color: var(--forest, #28724f); }
  .mob-avatar-red    { background: rgba(220,38,38,0.10);   color: #dc2626; }
  .mob-avatar-purple { background: rgba(124,58,237,0.10);  color: #7c3aed; }

  .mob-list-main {
    flex: 1;
    min-width: 0;
  }

  .mob-list-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--tx-1, #0d1f12);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
    font-family: var(--font-body, 'Outfit', system-ui);
  }

  .mob-list-sub {
    font-size: 12px;
    color: var(--tx-3, #7a9a84);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--font-body, 'Outfit', system-ui);
  }

  .mob-list-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .mob-chevron {
    width: 16px;
    height: 16px;
    color: rgba(122,154,132,0.5);
    flex-shrink: 0;
  }

  /* ── BADGES ───────────────────────────────────────────────── */
  .mob-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.03em;
    white-space: nowrap;
    font-family: var(--font-body, 'Outfit', system-ui);
  }

  .mob-badge-green  { background: rgba(40,114,79,0.10);    color: var(--forest, #28724f); }
  .mob-badge-blue   { background: rgba(37,99,235,0.10);    color: #2563eb; }
  .mob-badge-teal   { background: rgba(13,148,136,0.10);   color: #0d9488; }
  .mob-badge-amber  { background: rgba(217,119,6,0.10);    color: #d97706; }
  .mob-badge-red    { background: rgba(220,38,38,0.10);    color: #dc2626; }
  .mob-badge-gray   { background: rgba(107,114,128,0.10);  color: #6b7280; }
  .mob-badge-gold   { background: rgba(184,134,11,0.10);   color: #b8860b; }
  .mob-badge-purple { background: rgba(124,58,237,0.10);   color: #7c3aed; }

  /* ── ALERT BANNERS ────────────────────────────────────────── */
  .mob-alert-banner {
    margin: 8px 16px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-body, 'Outfit', system-ui);
  }

  .mob-alert-red {
    background: rgba(220,38,38,0.08);
    color: #dc2626;
  }

  /* ── INNER TAB BAR ────────────────────────────────────────── */
  /* For in-page tabs (KPIs Roster/Scorecard/OKRs, Coaching CECs/Coaches/Cohorts) */
  .mob-tab-inner {
    display: flex;
    gap: 0;
    padding: 12px 16px 0;
    border-bottom: 1.5px solid rgba(40,114,79,0.12);
    margin-bottom: 4px;
  }

  .mob-inner-tab {
    flex: 1;
    height: 40px;
    border: none;
    background: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--tx-3, #7a9a84);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -1.5px;
    transition: color 0.15s, border-color 0.15s;
    font-family: var(--font-body, 'Outfit', system-ui);
    -webkit-tap-highlight-color: transparent;
  }

  .mob-inner-tab.active {
    color: var(--forest, #28724f);
    border-bottom-color: var(--forest, #28724f);
  }

  .mob-inner-tab:active { opacity: 0.7; }

  /* ── YEAR SELECTOR ────────────────────────────────────────── */
  .mob-year-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 20px 8px;
  }

  .mob-year-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(40,114,79,0.25);
    background: none;
    font-size: 18px;
    color: var(--forest, #28724f);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    -webkit-tap-highlight-color: transparent;
  }

  .mob-year-btn:active { background: rgba(40,114,79,0.10); }

  .mob-year-label {
    font-family: Georgia, 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--tx-1, #0d1f12);
    min-width: 60px;
    text-align: center;
  }

  /* ── EMPTY STATE ──────────────────────────────────────────── */
  .mob-empty {
    padding: 40px 20px;
    text-align: center;
  }

  .mob-empty-icon {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .mob-empty-msg {
    font-size: 14px;
    color: var(--tx-3, #7a9a84);
    font-family: var(--font-body, 'Outfit', system-ui);
  }

  /* ── FAB ──────────────────────────────────────────────────── */
  .mob-fab {
    position: fixed;
    bottom: calc(var(--tab-h, 72px) + 16px);
    right: 20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--forest, #28724f);
    color: #fff;
    border: none;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(40,114,79,0.35);
    cursor: pointer;
    z-index: 100;
    transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.15s;
    -webkit-tap-highlight-color: transparent;
  }

  .mob-fab:active {
    transform: scale(0.93);
    box-shadow: 0 2px 8px rgba(40,114,79,0.25);
  }

/* ── GROUP 4: frankly / cic / elementor CSS delegation ──────── */
/* mob-group4 is added to el by Patch 15 in mobile-ux.js when isMob(). */

.mob-group4 {
  animation: mob-page-in 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* Section-header: allow buttons to wrap below title on narrow screens */
.mob-group4 .section-header {
  flex-wrap: wrap;
  gap: 8px;
}

/* Frankly video grid: force single column regardless of inline minmax */
.mob-group4 [style*="auto-fill"] {
  grid-template-columns: 1fr !important;
}

/* CIC pipeline row: stack vertically, hide arrow dividers */
.mob-group4 .cic-pipeline-row {
  flex-direction: column !important;
  align-items: stretch !important;
}

/* Video cards: let them breathe on mobile */
.mob-group4 .video-card {
  flex-direction: column;
}

/* Error boundary card */
.mob-error-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  margin: 40px 16px;
  border: 1px solid var(--bd);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Long-press feedback on attendee rows */
.orient-attendee-row:active {
  background: var(--forest-dim, rgba(40,114,79,0.06));
  transition: background 0.1s;
}

/* ── BUDGET TAB BAR ──────────────────────────────────────────
   Keeps 8-button tab bar accessible without horizontal page scroll.
   Desktop is unaffected — the mobile JS patch replaces the page
   entirely; this rule is a safety net for edge viewports. */
@media (max-width: 600px) {
  #bud-tab-bar {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 6px;
    padding-bottom: 8px;
    scrollbar-width: none;
    flex-wrap: nowrap;
  }
  #bud-tab-bar::-webkit-scrollbar { display: none; }
  #bud-tab-bar button {
    flex-shrink: 0;
    font-size: 12px;
    padding: 6px 10px;
  }
}

/* ── MODAL GLOBAL: bottom-sheet on mobile ────────────────────
   Slides modals up from the bottom — standard mobile UX pattern.
   Keeps existing desktop modal style untouched. */
@media (max-width: 600px) {
  .modal-overlay { align-items: flex-end; }
  .modal {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 16px 16px 0 0;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal .form-row { flex-direction: column; }
}

/* ── TOUCH TARGETS ───────────────────────────────────────────
   44px is Apple HIG minimum tap target.
   font-size:16px on inputs prevents iOS Safari auto-zoom on focus. */
@media (max-width: 600px) {
  .btn     { min-height: 44px; }
  .btn-sm  { min-height: 36px; font-size: 12px; }
  .form-input, .form-select, .form-textarea {
    font-size: 16px !important;
    min-height: 44px;
  }
}

/* ── DESIGN TOKENS (full audit pass 2026-05-20) ──────────────
   768px breakpoint covers phones + iPad mini portrait.
   Complements the 600px rules already in this file. */
@media (max-width: 768px) {
  /* Typography */
  .section-title { font-size: 20px; font-weight: 700; }
  .card-title    { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

  /* Spacing */
  .card { padding: 14px 16px; border-radius: 14px; }

  /* Forms */
  .form-row      { flex-direction: column; gap: 0; }
  .form-group    { margin-bottom: 14px; }
  .form-input,
  .form-select,
  .form-textarea { font-size: 16px !important; min-height: 44px; border-radius: 10px; }
  .form-label    { font-size: 13px; font-weight: 600; }

  /* Buttons */
  .btn    { min-height: 44px; border-radius: 10px; -webkit-tap-highlight-color: transparent; }
  .btn-sm { min-height: 36px; font-size: 12px; padding: 0 12px; }
  .card   { -webkit-tap-highlight-color: transparent; }

  /* Tables */
  .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 12px; }
  table         { font-size: 12px; }
  th, td        { padding: 8px 10px; white-space: nowrap; }

  /* Grids */
  .grid-2, .grid-3 { grid-template-columns: 1fr !important; }

  /* Page overflow */
  #page-content { overflow-x: hidden; }
}

/* ── MODAL — upgrade to 768px + drag handle + safe-area ──────── */
@media (max-width: 768px) {
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: calc(32px + env(safe-area-inset-bottom));
  }
  .modal::before {
    content: '';
    display: block;
    width: 36px; height: 4px;
    background: var(--bd, #e0e8e2);
    border-radius: 2px;
    margin: 0 auto 16px;
  }
  .modal .form-row { flex-direction: column; }
}

/* ── TAB BARS — universal horizontal scroll at 768px ──────────── */
@media (max-width: 768px) {
  .tab-bar,
  [id$="-tab-bar"],
  [id$="tabs"] {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 6px;
    padding-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .tab-bar::-webkit-scrollbar,
  [id$="-tab-bar"]::-webkit-scrollbar,
  [id$="tabs"]::-webkit-scrollbar     { display: none; }
  .tab-bar button,    .tab-bar .btn,
  [id$="-tab-bar"] button,
  [id$="-tab-bar"] .btn               { flex-shrink: 0; }
}

/* ── TOAST — pin to bottom-center on mobile ───────────────────── */
@media (max-width: 768px) {
  #toast {
    bottom: calc(80px + env(safe-area-inset-bottom)) !important;
    left: 16px !important;
    right: 16px !important;
    top: auto !important;
    transform: none !important;
    width: auto !important;
    text-align: center;
    border-radius: 12px;
  }
}

/* ── iOS SAFE AREA & MOMENTUM SCROLL ─────────────────────────── */
@media (max-width: 768px) {
  #page-content {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
  .mob-page, .table-scroll, .mob-chip-row {
    -webkit-overflow-scrolling: touch;
  }
}

/* ── mob-group5: CSS-delegate for hub / stub pages ────────────── */
.mob-group5 { overflow-x: hidden; }
@media (max-width: 768px) {
  .mob-group5 .card { border-radius: 14px; margin-bottom: 12px; }
  .mob-group5 .search-input,
  .mob-group5 input[type="text"],
  .mob-group5 input[type="search"] { width: 100% !important; box-sizing: border-box; font-size: 16px !important; }
  .mob-group5 table       { font-size: 12px; }
  .mob-group5 th,
  .mob-group5 td          { padding: 7px 9px; white-space: nowrap; }
  /* Department employee grids → single column */
  .mob-group5 [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  /* Program hub card grids → single column */
  .mob-group5 .program-hub-grid,
  .mob-group5 [class*="hub-grid"] { grid-template-columns: 1fr !important; }
}

/* ── PART 1: BOTTOM TAB NAV ──────────────────────────────────── */
@media (max-width: 768px) {
  #mob-hamburger { display: none !important; }

  #mobile-bottom-nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 64px;
    background: var(--bg-1, #fff);
    border-top: 1px solid var(--bd, #e0e8e2);
    display: flex;
    align-items: stretch;
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -4px 20px rgba(0,0,0,.06);
  }

  #mobile-bottom-nav .nav-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 500;
    color: var(--tx-3, #7a9a84);
    cursor: pointer;
    border: none;
    background: none;
    padding: 8px 4px;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    transition: color .15s;
    font-family: var(--font-body, 'Outfit', system-ui);
  }

  /* Active state — forest green icon + label + top indicator pill */
  #mobile-bottom-nav .nav-tab.active { color: var(--forest, #28724f); }

  #mobile-bottom-nav .nav-tab.active::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 32px; height: 3px;
    background: var(--forest, #28724f);
    border-radius: 0 0 3px 3px;
  }

  /* Icon wrapper — controls size and color inheritance */
  #mobile-bottom-nav .nav-icon-wrap {
    width: 24px; height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #mobile-bottom-nav .nav-icon-wrap svg {
    width: 22px; height: 22px;
    stroke: currentColor;
    stroke-width: 1.75;
    fill: none;
  }

  /* Active icon — slightly bolder stroke */
  #mobile-bottom-nav .nav-tab.active .nav-icon-wrap svg { stroke-width: 2.25; }

  /* Label */
  #mobile-bottom-nav .nav-tab span {
    font-size: 10px;
    letter-spacing: .01em;
    line-height: 1;
  }

  #page-content {
    padding-bottom: calc(72px + env(safe-area-inset-bottom)) !important;
  }
}

/* ── PART 3: COLOR STAT CARDS ─────────────────────────────────── */
@media (max-width: 768px) {
  .mobile-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
    padding: 0 16px;
  }

  .mobile-stat-card {
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 90px;
    justify-content: space-between;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-stat-card .stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: 0.75;
    font-family: var(--font-body, 'Outfit', system-ui);
  }

  .mobile-stat-card .stat-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    font-family: Georgia, 'Playfair Display', serif;
  }

  .mobile-stat-card .stat-sub {
    font-size: 11px;
    opacity: 0.65;
    font-family: var(--font-body, 'Outfit', system-ui);
  }

  .stat-card-green  { background: var(--forest, #28724f); color: #fff; }
  .stat-card-gold   { background: #c9a84c; color: #fff; }
  .stat-card-blue   { background: #3b82f6; color: #fff; }
  .stat-card-red    { background: #ef4444; color: #fff; }
  .stat-card-dark   { background: var(--bg-3, #e5e7eb); color: var(--tx-1, #0d1f12); }
  .mobile-stat-card:active { transform: scale(0.97); transition: transform .12s; }
}

/* ── PART 5: TRAINING EXPANDABLE CARDS ───────────────────────── */
@media (max-width: 768px) {
  .training-card-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    background: var(--bg-2, #f0f7f2);
    border-radius: 0 0 14px 14px;
    margin-top: -14px;
    padding: 0 14px;
  }
  .training-card-wrap.expanded .training-card-detail {
    max-height: 300px;
    padding: 12px 14px;
  }
  .training-card-wrap {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 8px;
    box-shadow: 0 1px 3px rgba(15,36,25,0.06);
  }
  .training-card-wrap .mob-list-row {
    margin-bottom: 0;
    border-radius: 14px;
    box-shadow: none;
  }
  .training-card-wrap.expanded .mob-list-row {
    border-radius: 14px 14px 0 0;
  }
}

/* ── PART 6: LEADERSHIP ADVENTURE SNAPSHOT FIX ───────────────── */
@media (max-width: 768px) {
  .la-snapshot, #la-snapshot, [class*="la-snapshot"] {
    font-size: 13px !important;
    padding: 12px !important;
  }
  .la-snapshot .stat-value, #la-snapshot .stat-value,
  [class*="la-snapshot"] .stat-value {
    font-size: 22px !important;
  }
  .la-snapshot-grid, [class*="la-snapshot-grid"] {
    grid-template-columns: 1fr 1fr !important;
  }
  /* Also cap any "snapshot" card size in Leadership programs */
  .programs-leadership .card[style*="grid"],
  #programs-leadership .card[style*="grid"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ── PART 10: MOBILE TABLE → CARD STACKS ─────────────────────── */
@media (max-width: 768px) {
  .mobile-table-card {
    background: var(--bg-1, #fff);
    border: 1px solid var(--bd, #e0e8e2);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 8px;
    box-shadow: 0 1px 3px rgba(15,36,25,0.05);
  }
  .mobile-table-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 13px;
  }
  .mobile-table-card-row:not(:last-child) {
    border-bottom: 1px solid var(--bg-3, #f0f2f0);
  }
  .mobile-table-card-key {
    font-size: 11px;
    color: var(--tx-3, #7a9a84);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    flex-shrink: 0;
    margin-right: 10px;
    font-family: var(--font-body, 'Outfit', system-ui);
  }
  .mobile-table-card-val {
    color: var(--tx-1, #0d1f12);
    text-align: right;
    font-family: var(--font-body, 'Outfit', system-ui);
  }
}

/* ── MORE MENU GRID ──────────────────────────────────────────── */
.mobile-more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 16px 8px;
}

.mobile-more-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: var(--bg-2, #f0f7f2);
  border-radius: 14px;
  cursor: pointer;
  border: none;
  color: var(--tx-1, #0d1f12);
  font-size: 12px;
  font-weight: 500;
  -webkit-tap-highlight-color: transparent;
  transition: background .15s;
  font-family: var(--font-body, 'Outfit', system-ui);
}

.mobile-more-item:active { background: var(--bg-3, #e5e7eb); }

.mobile-more-item svg {
  width: 26px; height: 26px;
  stroke: var(--forest, #28724f);
  stroke-width: 1.75;
  fill: none;
}

/* ── STAT CARD ICON ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .mob-stat-card {
    position: relative;
  }
  .mob-stat-card .stat-icon {
    position: absolute;
    top: 10px; right: 10px;
    opacity: 0.30;
  }
  .mob-stat-card .stat-icon svg {
    width: 18px; height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
  }

  /* ── EXPAND CHEVRON ROTATION ────────────────────────────────── */
  .expand-chevron { transition: transform .2s; }
  .expanded .expand-chevron { transform: rotate(180deg); }

  /* ── TAP ANIMATIONS ─────────────────────────────────────────── */
  .btn, .card, .nav-tab, .mobile-more-item, .mob-stat-card {
    -webkit-tap-highlight-color: transparent;
  }

  .btn:active, .mobile-more-item:active {
    transform: scale(0.97);
    transition: transform .1s;
  }

  .mob-stat-card:active {
    transform: scale(0.98);
    transition: transform .1s;
  }
}

/* ── Phase 2: Coaches, Analytics, Employees ──────────────────── */
@media (max-width: 768px) {
  /* Coach card press state */
  .m-coach-card:active {
    transform: scale(0.98);
    transition: transform .1s;
  }

  /* Dept filter chips — hide scrollbar */
  #m-dept-filter::-webkit-scrollbar { display: none; }

  /* Checklist detail animation */
  .m-coach-checklist {
    overflow: hidden;
    transition: max-height .3s ease;
  }

  /* Action sheet item press state */
  #m-action-sheet button:active {
    background: var(--m-bg2) !important;
  }

  /* Tier modal employee row press state */
  #tier-modal-body > div:active {
    background: var(--m-bg2);
  }
}

/* ── EARTHROCK: hide rename/edit buttons on mobile ───────────── */
@media (max-width: 768px) {
  button[onclick*="rename"],
  button[onclick*="Rename"],
  button[onclick*="renameSession"],
  button[onclick*="editSession"],
  button[onclick*="editProgram"],
  .rename-btn {
    display: none !important;
  }
}

/* ── TAB BAR: active button visual (inline styles applied by JS) */
@media (max-width: 768px) {
  .m-tab-bar .m-tab-btn {
    transition: background .15s, color .15s, box-shadow .15s;
  }
  .m-tab-bar .m-tab-btn.active {
    background: var(--m-card) !important;
    color: var(--m-forest) !important;
    box-shadow: var(--m-shadow-sm, 0 1px 4px rgba(0,0,0,.06)) !important;
    font-weight: 700;
  }
}

/* ── DARK MODE: fix text colors in sheets / modals ───────────── */
[data-theme="dark"] #m-action-sheet button,
[data-theme="dark"] #mobile-more-sheet button,
[data-theme="dark"] #m-action-sheet span,
[data-theme="dark"] #mobile-more-sheet span {
  color: var(--m-tx1, #f0f4f1) !important;
}

[data-theme="dark"] .mobile-more-item {
  color: var(--m-tx1, #f0f4f1) !important;
  background: var(--m-bg2, #1e2a22) !important;
}

[data-theme="dark"] .modal-title {
  color: var(--m-tx1, #f0f4f1) !important;
}

[data-theme="dark"] #mobile-bottom-nav .nav-tab span {
  color: var(--m-tx2, #8ca394);
}

[data-theme="dark"] #mobile-bottom-nav .nav-tab.active span {
  color: var(--m-forest, #28724f);
}

[data-theme="dark"] .m-top-bar {
  background: var(--m-bg2, #1e2a22) !important;
  border-bottom-color: rgba(255,255,255,.08) !important;
}

[data-theme="dark"] .m-top-bar-title {
  color: var(--m-tx1, #f0f4f1) !important;
}

[data-theme="dark"] .m-top-bar-btn {
  color: var(--m-tx1, #f0f4f1) !important;
}

[data-theme="dark"] .m-section-label {
  color: var(--m-tx2, #8ca394) !important;
}

[data-theme="dark"] .m-tab-bar .m-tab-btn {
  color: var(--m-tx2, #8ca394) !important;
  background: transparent !important;
}

[data-theme="dark"] .m-tab-bar .m-tab-btn.active {
  color: var(--m-forest, #28724f) !important;
  background: var(--m-card, #253028) !important;
}

[data-theme="dark"] #m-action-sheet > div {
  background: var(--m-bg2, #1e2a22) !important;
}

[data-theme="dark"] #m-action-sheet button:active,
[data-theme="dark"] #mobile-more-sheet button:active {
  background: rgba(255,255,255,.06) !important;
}

/* ── SKELETON PULSE ──────────────────────────────────────────── */
@keyframes m-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* ── PAGE TRANSITION (reduce jank on nav-tab taps) ───────────── */
@media (max-width: 768px) {
  #page-content {
    transition: opacity .15s ease;
  }
  #page-content.m-loading {
    opacity: 0.6;
    pointer-events: none;
  }
}

/* ── PHASE 3: EarthRock / First Year / Orientation ──────────── */
@media (max-width: 768px) {
  /* Milestone cards tap feedback */
  .m-milestone-card:active {
    transform: scale(0.98);
    transition: transform .1s;
  }
  /* Orientation session card tap */
  [onclick*="openOrientationSessionModal"]:active {
    opacity: 0.85;
  }
  /* Year pill scrollbar hide */
  [style*="scrollbar-width:none"]::-webkit-scrollbar { display: none; }
}

/* ── End mobile-ux.css ──────────────────────────────────────── */
