/* CanvassLite - Mobile-first CSS */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #dbeafe;
  --primary-50: #eff6ff;
  --green: #22c55e;
  --green-bg: #f0fdf4;
  --amber: #f59e0b;
  --amber-bg: #fffbeb;
  --red: #ef4444;
  --red-bg: #fef2f2;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.08), 0 2px 4px -2px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.06);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-900);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--radius); font-size: 14px; font-weight: 600;
  border: none; cursor: pointer; transition: all .2s; text-decoration: none;
  font-family: inherit; line-height: 1.4;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 1px 2px rgba(37,99,235,.3); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 4px 12px rgba(37,99,235,.3); transform: translateY(-1px); }
.btn-outline { background: #fff; color: var(--primary); border: 1.5px solid var(--gray-200); }
.btn-outline:hover { border-color: var(--primary); background: var(--primary-50); }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-block { width: 100%; }
.btn-ghost { background: none; color: var(--gray-600); border: none; }
.btn-ghost:hover { color: var(--gray-900); }
.btn-green { background: var(--green); color: #fff; }
.btn-amber { background: var(--amber); color: #fff; }
.btn-red { background: var(--red); color: #fff; }

/* ---- INPUTS ---- */
input, textarea, select {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); font-size: 15px; font-family: inherit;
  transition: border .2s, box-shadow .2s; background: #fff;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--gray-700); }

/* ---- CARD ---- */
.card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 24px; border: 1px solid var(--gray-100);
}

/* ---- BADGE ---- */
.badge {
  display: inline-block; padding: 2px 10px; border-radius: 99px;
  font-size: 12px; font-weight: 600;
}

/* ---- TOAST ---- */
#toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--gray-900); color: #fff; padding: 10px 24px; border-radius: 99px;
  font-size: 14px; opacity: 0; transition: all .3s; z-index: 9999; pointer-events: none;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }


/* ================================================================
   LANDING PAGE
   ================================================================ */
.landing-body { background: #fff; }

/* -- Nav -- */
.landing-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 19px; font-weight: 800; color: var(--gray-900);
}
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--gray-600); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--gray-900); text-decoration: none; }
.nav-actions { display: flex; gap: 8px; align-items: center; }

/* -- Hero -- */
.hero {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, var(--primary-50) 0%, #fff 100%);
  overflow: hidden;
}
.hero .container {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
.hero-badge {
  display: inline-block; padding: 6px 16px; border-radius: 99px;
  background: var(--primary-light); color: var(--primary); font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 40px; font-weight: 900; line-height: 1.12; letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px; color: var(--gray-500); max-width: 480px; margin-bottom: 32px; line-height: 1.7;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-proof { font-size: 13px; color: var(--gray-400); }

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; }
.phone-mock {
  width: 280px; height: 500px;
  background: var(--gray-900); border-radius: 36px; padding: 12px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,.05), 0 40px 60px -20px rgba(0,0,0,.15);
  position: relative;
}
.phone-mock::before {
  content: ''; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 24px; background: var(--gray-900); border-radius: 0 0 14px 14px; z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%; background: #f8fafc; border-radius: 26px;
  overflow: hidden; display: flex; flex-direction: column;
}
.mock-header {
  padding: 32px 16px 10px; background: #fff;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.mock-dot.green { background: var(--green); }
.mock-map {
  flex: 1; position: relative;
  background: linear-gradient(160deg, #e3edf7 0%, #eef2f7 40%, #e8f4ec 100%);
  overflow: hidden;
}
.mock-streets { position: absolute; inset: 0; }
.street { position: absolute; background: rgba(255,255,255,.6); }
.street.h { left: 0; right: 0; height: 2px; }
.street.v { top: 0; bottom: 0; width: 2px; }
.mock-pin {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  border: 2.5px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,.2);
  z-index: 1; transition: transform .2s;
}
.mock-pin.green { background: var(--green); }
.mock-pin.amber { background: var(--amber); }
.mock-pin.red { background: var(--red); }
.mock-pin.gray { background: var(--gray-400); }
.mock-gps {
  position: absolute; bottom: 30%; left: 50%;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--primary); border: 3px solid #fff;
  box-shadow: 0 0 0 6px rgba(37,99,235,.15), 0 1px 4px rgba(0,0,0,.2);
  z-index: 2; animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(37,99,235,.15), 0 1px 4px rgba(0,0,0,.2); }
  50% { box-shadow: 0 0 0 12px rgba(37,99,235,.08), 0 1px 4px rgba(0,0,0,.2); }
}
.mock-bottom-bar {
  display: flex; justify-content: space-around; padding: 14px;
  background: #fff; border-top: 1px solid var(--gray-100);
}
.mock-stat { font-size: 12px; color: var(--gray-500); }
.mock-stat strong { color: var(--gray-900); font-weight: 700; }

/* -- Proof bar -- */
.proof-bar { padding: 28px 0; border-bottom: 1px solid var(--gray-100); }
.proof-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  font-size: 13px; color: var(--gray-400); font-weight: 500;
}
.proof-logos .sep { color: var(--gray-200); }

/* -- Section headers -- */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.section-header p { font-size: 16px; color: var(--gray-500); max-width: 500px; margin: 0 auto; }

/* -- Features -- */
.features { padding: 88px 0; background: var(--gray-50); }
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px;
}
.feature-card {
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
  padding: 28px; transition: box-shadow .25s, transform .25s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--primary-50); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* -- How it works -- */
.how-it-works { padding: 88px 0; }
.steps-grid {
  display: flex; align-items: flex-start; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.step-card {
  flex: 1; min-width: 200px; max-width: 280px; text-align: center; padding: 24px;
}
.step-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--primary);
  color: #fff; font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; box-shadow: 0 4px 12px rgba(37,99,235,.25);
}
.step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }
.step-arrow { display: flex; align-items: center; padding-top: 36px; }

/* -- Pricing -- */
.pricing { padding: 88px 0; background: var(--gray-50); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: 960px; margin: 0 auto;
}
.price-card {
  background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl);
  padding: 36px 28px; text-align: center; position: relative; transition: box-shadow .25s;
}
.price-card:hover { box-shadow: var(--shadow-lg); }
.price-card.popular {
  border-color: var(--primary); box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}
.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; padding: 4px 18px;
  border-radius: 99px; font-size: 12px; font-weight: 700;
  box-shadow: 0 2px 8px rgba(37,99,235,.3);
}
.price-card h3 { font-size: 18px; font-weight: 700; color: var(--gray-700); margin-bottom: 4px; }
.price { font-size: 48px; font-weight: 900; letter-spacing: -0.03em; margin: 8px 0 4px; }
.price span { font-size: 16px; font-weight: 500; color: var(--gray-400); }
.price-desc { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }
.price-card ul { list-style: none; text-align: left; margin-bottom: 28px; }
.price-card li {
  padding: 8px 0; font-size: 14px; color: var(--gray-600);
  border-bottom: 1px solid var(--gray-50);
  display: flex; align-items: center; gap: 10px;
}
.price-card li::before {
  content: '';
  display: inline-block; width: 20px; height: 20px; flex-shrink: 0;
  background: var(--green-bg); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%2322c55e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* -- Final CTA -- */
.final-cta {
  padding: 88px 0; text-align: center;
  background: linear-gradient(135deg, var(--gray-900) 0%, #1e3a5f 100%);
  color: #fff;
}
.final-cta h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; }
.final-cta p { font-size: 17px; color: rgba(255,255,255,.55); margin-bottom: 32px; }
.final-cta .btn-primary {
  background: #fff; color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.final-cta .btn-primary:hover { background: var(--gray-100); transform: translateY(-1px); }

/* -- Footer -- */
.landing-footer { padding: 32px 0; border-top: 1px solid var(--gray-100); }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-inner p { font-size: 13px; color: var(--gray-400); }


/* ================================================================
   AUTH PAGES
   ================================================================ */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px;
  background: var(--gray-50);
}
.auth-box { width: 100%; max-width: 400px; }
.auth-box h1 { font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.auth-box .subtitle { color: var(--gray-500); margin-bottom: 24px; font-size: 15px; }
.auth-box .form-group { margin-bottom: 16px; }

/* ================================================================
   ONBOARDING
   ================================================================ */
.onboarding { min-height: 100vh; padding: 40px 20px; max-width: 560px; margin: 0 auto; }
.progress-bar { display: flex; gap: 6px; margin-bottom: 40px; }
.progress-bar .step {
  flex: 1; height: 4px; background: var(--gray-200); border-radius: 99px; transition: background .3s;
}
.progress-bar .step.active { background: var(--primary); }
.ob-step { display: none; }
.ob-step.active { display: block; }
.ob-step h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.ob-step p { color: var(--gray-500); margin-bottom: 24px; }
.ob-step textarea { min-height: 120px; }
.invite-box {
  background: var(--gray-100); padding: 16px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.invite-box code { flex: 1; font-size: 14px; word-break: break-all; }

/* ================================================================
   VOLUNTEER MAP (app.html)
   ================================================================ */
.app-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; background: #fff; border-bottom: 1px solid var(--gray-200);
}
.app-header .campaign { font-weight: 700; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-header .session-badge { font-size: 12px; color: var(--green); font-weight: 600; }
.header-actions { display: flex; gap: 8px; }

#map { position: fixed; top: 52px; bottom: 0; left: 0; right: 0; z-index: 1; }

.offline-badge {
  position: fixed; top: 60px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: #fff; padding: 4px 16px; border-radius: 99px;
  font-size: 12px; font-weight: 600; z-index: 1001; display: none;
}

/* Bottom sheet */
.bottom-sheet {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1002;
  background: #fff; border-radius: 16px 16px 0 0; box-shadow: 0 -4px 20px rgba(0,0,0,.15);
  padding: 20px; transform: translateY(100%); transition: transform .3s ease;
}
.bottom-sheet.open { transform: translateY(0); }
.sheet-handle {
  width: 40px; height: 4px; background: var(--gray-300); border-radius: 99px;
  margin: 0 auto 16px;
}
.sheet-name { font-size: 18px; font-weight: 700; }
.sheet-address { color: var(--gray-500); font-size: 14px; margin-bottom: 4px; }
.sheet-notes { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; font-style: italic; }
.sheet-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
.sheet-actions button {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 12px 4px; border-radius: var(--radius); border: 1.5px solid var(--gray-200);
  background: #fff; cursor: pointer; font-size: 11px; font-weight: 600; transition: all .15s;
}
.sheet-actions button:hover { border-color: var(--gray-300); }
.sheet-actions button.active { border-color: var(--primary); background: var(--primary-light); }
.sheet-actions .dot { width: 12px; height: 12px; border-radius: 50%; }

/* Chat panel */
.chat-panel {
  position: fixed; top: 52px; right: 0; bottom: 0; width: 100%; max-width: 360px;
  background: #fff; z-index: 1003; transform: translateX(100%); transition: transform .3s;
  display: flex; flex-direction: column; box-shadow: -4px 0 20px rgba(0,0,0,.1);
}
.chat-panel.open { transform: translateX(0); }
.chat-header {
  padding: 12px 16px; border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: space-between; font-weight: 700;
}
.chat-messages { flex: 1; overflow-y: auto; padding: 16px; }
.chat-msg { margin-bottom: 12px; }
.chat-msg .author { font-size: 12px; font-weight: 700; color: var(--primary); }
.chat-msg .text { font-size: 14px; }
.chat-msg .time { font-size: 11px; color: var(--gray-500); margin-left: 6px; }
.chat-input {
  padding: 12px; border-top: 1px solid var(--gray-200);
  display: flex; gap: 8px;
}
.chat-input input { flex: 1; }

/* ================================================================
   DASHBOARD
   ================================================================ */
.dash-layout { display: flex; min-height: 100vh; }

.dash-sidebar {
  width: 240px; background: #fff; border-right: 1px solid var(--gray-200);
  padding: 16px 0; flex-shrink: 0; display: flex; flex-direction: column;
}
.dash-sidebar .logo { padding: 0 20px; margin-bottom: 4px; font-size: 18px; }
.dash-sidebar .campaign-label { font-size: 12px; color: var(--gray-500); padding: 0 20px; margin-bottom: 24px; }
.dash-sidebar nav { flex: 1; }
.dash-sidebar nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; color: var(--gray-600); font-size: 14px; font-weight: 500;
  transition: all .15s; border-left: 3px solid transparent;
}
.dash-sidebar nav a:hover { background: var(--gray-50); color: var(--gray-900); text-decoration: none; }
.dash-sidebar nav a.active {
  background: var(--primary-50); color: var(--primary); font-weight: 600;
  border-left-color: var(--primary);
}
.dash-sidebar .sidebar-footer { padding: 16px 20px; border-top: 1px solid var(--gray-200); }
.dash-sidebar .user-info { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.dash-sidebar .avatar, .member-card .avatar {
  width: 34px; height: 34px; border-radius: 50%; background: var(--primary);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}

.dash-main { flex: 1; padding: 32px; overflow-y: auto; background: var(--gray-50); }
.dash-main h1 { font-size: 24px; font-weight: 800; margin-bottom: 24px; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 28px; }
.stat-card { padding: 20px; }
.stat-card .stat-value { font-size: 36px; font-weight: 900; letter-spacing: -0.02em; }
.stat-card .stat-label { font-size: 13px; color: var(--gray-500); margin-top: 2px; }

/* Table */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th {
  text-align: left; padding: 10px 14px; background: var(--gray-50);
  font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .04em;
  color: var(--gray-500); border-bottom: 1px solid var(--gray-200);
}
td { padding: 10px 14px; border-bottom: 1px solid var(--gray-100); }
tr:hover td { background: var(--gray-50); }

.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.filters select, .filters input { width: auto; min-width: 160px; }

/* Tabs */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Sessions */
.session-card { border: 1px solid var(--gray-200); margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; }
.session-card .session-info h3 { font-size: 16px; font-weight: 700; }
.session-card .session-info p { font-size: 13px; color: var(--gray-500); }

/* Team */
.member-card {
  display: flex; align-items: center; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.member-card:last-child { border-bottom: none; }
.member-card .member-info { flex: 1; }
.member-card .member-info .name { font-weight: 600; font-size: 15px; }
.member-card .member-info .role { font-size: 13px; color: var(--gray-500); text-transform: capitalize; }

/* CSV modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 2000;
  display: none; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal { background: #fff; border-radius: var(--radius-xl); padding: 28px; width: 100%; max-width: 480px; box-shadow: var(--shadow-xl); }
.modal h2 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.modal textarea { min-height: 150px; margin-bottom: 16px; }


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 40px 0 32px; }
  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 15px; }
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding-top: 0; }
  .phone-mock { width: 240px; height: 420px; }
  .footer-inner { justify-content: center; text-align: center; }
  .final-cta h2 { font-size: 24px; }

  .dash-sidebar {
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 1100;
    transform: translateX(-100%); transition: transform .3s;
    box-shadow: 4px 0 20px rgba(0,0,0,.1);
  }
  .dash-sidebar.open { transform: translateX(0); }
  .mobile-header {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; background: #fff; border-bottom: 1px solid var(--gray-200);
  }
  .hamburger { background: none; border: none; font-size: 22px; cursor: pointer; padding: 4px; }
  .dash-main { padding: 16px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 769px) {
  .mobile-header { display: none; }
  .hero .container { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 48px; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .sheet-actions { max-width: 400px; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 52px; }
}

/* ================================================================
   JOIN PAGE
   ================================================================ */
.join-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 24px; background: var(--gray-50);
}
