/* =========================================
   VESTING PAGE — STRIPE LIGHT THEME
   ========================================= */

:root {
  --bg:               #ffffff;
  --bg-subtle:        #f7f7f8;
  --bg-section:       #f3f4f6;
  --border:           #e5e7eb;
  --border-strong:    #d1d5db;
  --primary:          #5046e5;
  --primary-hover:    #4338ca;
  --primary-bg:       #eef2ff;
  --primary-border:   #c7d2fe;
  --text:             #111827;
  --text-2:           #374151;
  --text-3:           #6b7280;
  --text-4:           #9ca3af;
  --success:          #16a34a;
  --success-bg:       #f0fdf4;
  --success-border:   #bbf7d0;
  --error:            #dc2626;
  --shadow-sm:        0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:        0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:        0 12px 32px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.04);
  --font:             'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:             'JetBrains Mono', 'Fira Code', monospace;
  --radius:           6px;
  --radius-lg:        10px;
  --radius-xl:        14px;
  --transition:       all 0.18s cubic-bezier(0.16,1,0.3,1);
  /* legacy aliases */
  --stellar-black:    #111827;
  --stellar-yellow:   #5046e5;
  --stellar-yellow-hover: #4338ca;
  --bg-cream:         #f7f7f8;
  --bg-cream-alt:     #f3f4f6;
  --text-muted:       #6b7280;
  --text-light:       #9ca3af;
  --border-light:     #e5e7eb;
  --border-medium:    #d1d5db;
  --shadow-card:      0 4px 12px rgba(0,0,0,0.08);
  --shadow-yellow:    0 2px 8px rgba(80,70,229,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 14px; }
body { font-family: var(--font); background: var(--bg-subtle); color: var(--text); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* =========================================
   NAV
   ========================================= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 60px;
  background: var(--bg); border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
nav.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); }

.nav-logo { font-size: 15px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 8px; }
.logo-orb { width: 24px; height: 24px; background: var(--primary); border-radius: var(--radius); flex-shrink: 0; }

.nav-links { display: flex; gap: 4px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-3);
  padding: 6px 10px; border-radius: var(--radius); transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-subtle); }
.nav-links a.nav-active { color: var(--primary); background: var(--primary-bg); }

.nav-right { display: flex; align-items: center; gap: 10px; }
.btn-connect {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; background: var(--primary); color: #fff;
  border: none; border-radius: var(--radius); font-size: 13px; font-weight: 500; transition: var(--transition);
}
.btn-connect:hover { background: var(--primary-hover); box-shadow: 0 2px 8px rgba(80,70,229,0.3); }

.wallet-connected {
  display: flex; align-items: center; gap: 10px; padding: 6px 12px;
  background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--radius);
}
.wallet-address { font-family: var(--mono); font-size: 12px; color: var(--text); font-weight: 500; }
.wallet-disconnect {
  padding: 4px 10px; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 11px; font-weight: 500; color: var(--text-3); transition: var(--transition);
}
.wallet-disconnect:hover { border-color: var(--error); color: var(--error); }

.mobile-toggle { display: none; background: transparent; border: none; color: var(--text); font-size: 20px; }
.mobile-menu {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: var(--bg); z-index: 400;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transform: translateY(-100%); transition: transform 0.35s ease;
}
.mobile-menu.active { transform: translateY(0); }
.mobile-menu a { color: var(--text); font-size: 18px; font-weight: 600; }

/* =========================================
   HERO
   ========================================= */
.hero-section {
  position: relative; margin-top: 60px;
  background: var(--bg); overflow: hidden;
  padding: 56px 0 44px; border-bottom: 1px solid var(--border);
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(80,70,229,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-section::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 0%, transparent 100%);
  pointer-events: none;
}

.hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; text-align: center; }

.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 20px; }
.breadcrumb a, .breadcrumb span { font-size: 12px; font-weight: 500; color: var(--text-4); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb svg { color: var(--text-4); flex-shrink: 0; }

.hero-title { font-size: clamp(26px, 4vw, 42px); font-weight: 700; color: var(--text); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 10px; }
.hero-desc { font-size: 15px; color: var(--text-3); max-width: 520px; margin: 0 auto; line-height: 1.6; }

/* =========================================
   PAGE BODY
   ========================================= */
.page-body { max-width: 1200px; margin: 0 auto; padding: 40px 40px 80px; }

/* =========================================
   EMPTY STATE
   ========================================= */
.empty-state {
  text-align: center; padding: 64px 20px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-xl); margin-bottom: 28px;
}
.empty-state svg { color: var(--text-4); margin-bottom: 16px; }
.empty-state h3 { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.empty-state p { font-size: 13px; color: var(--text-3); margin-bottom: 20px; }
.empty-state-small { text-align: center; padding: 32px 20px; color: var(--text-3); font-size: 13px; }

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: var(--primary); border: none; border-radius: var(--radius);
  font-size: 13px; font-weight: 500; color: #fff; transition: var(--transition);
}
.btn-primary:hover { background: var(--primary-hover); box-shadow: 0 2px 8px rgba(80,70,229,0.3); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 13px; font-weight: 500; color: var(--text); transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }

/* =========================================
   SUMMARY GRID
   ========================================= */
.summary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-bottom: 40px; }
.summary-card {
  display: flex; align-items: flex-start; gap: 14px; padding: 20px;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--transition);
}
.summary-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.summary-icon { width: 40px; height: 40px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.summary-content { flex: 1; }
.summary-label { font-size: 11px; font-weight: 600; color: var(--text-4); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 6px; }
.summary-value { font-size: 24px; font-weight: 700; color: var(--text); letter-spacing: -0.5px; margin-bottom: 3px; }
.summary-sublabel { font-size: 12px; color: var(--text-4); }

/* =========================================
   VESTING SCHEDULES
   ========================================= */
.vesting-schedules { margin-bottom: 40px; }
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.section-title { font-size: 20px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }

.filter-tabs {
  display: flex; gap: 4px; padding: 3px;
  background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.filter-tab {
  padding: 6px 14px; background: transparent; border: none; border-radius: var(--radius);
  font-size: 12px; font-weight: 500; color: var(--text-3); transition: var(--transition);
}
.filter-tab:hover { color: var(--text); }
.filter-tab.active { background: var(--bg); color: var(--text); box-shadow: var(--shadow-sm); }

.vesting-list { display: flex; flex-direction: column; gap: 16px; }

/* =========================================
   VESTING CARD
   ========================================= */
.vesting-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; transition: var(--transition);
}
.vesting-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }

.vesting-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
  flex-wrap: wrap; gap: 12px;
}
.vesting-project { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.vesting-project-logo {
  width: 44px; height: 44px; border-radius: var(--radius-lg); border: 1px solid var(--border);
  object-fit: contain; background: var(--bg-subtle); padding: 6px; flex-shrink: 0;
}
.vesting-project-info { flex: 1; min-width: 0; }
.vesting-project-info h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.vesting-project-meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.vesting-project-symbol { font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--text-4); text-transform: uppercase; }
.vesting-meta-divider { color: var(--text-4); font-size: 10px; }
.vesting-network { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 500; color: var(--text-3); }
.vesting-network img { width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--border); }

.vesting-status {
  padding: 4px 10px; border-radius: 999px;
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; flex-shrink: 0;
}
.vesting-status.active { background: var(--success-bg); color: var(--success); border: 1px solid var(--success-border); }
.vesting-status.completed { background: var(--bg-subtle); color: var(--text-4); border: 1px solid var(--border); }

.vesting-progress-compact { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.vesting-progress-bar { flex: 1; height: 5px; background: var(--bg-subtle); border-radius: 3px; overflow: hidden; border: 1px solid var(--border); }
.vesting-progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary) 0%, #818cf8 100%); border-radius: 3px; transition: width 0.6s ease; }
.vesting-progress-text { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--text-3); white-space: nowrap; }

.vesting-table { margin-bottom: 16px; }
.vesting-table-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 14px 0; }
.vesting-table-divider { height: 1px; background: var(--border); }
.vesting-table-cell { display: flex; flex-direction: column; gap: 4px; }
.vesting-table-label { font-size: 11px; font-weight: 600; color: var(--text-4); text-transform: uppercase; letter-spacing: 0.06em; }
.vesting-table-value { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--text); }
.vesting-table-value.highlight { color: var(--success); }

.vesting-actions { display: flex; gap: 10px; padding-top: 16px; border-top: 1px solid var(--border); flex-wrap: wrap; }

.btn-claim {
  flex: 1; min-width: 180px; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 18px; background: var(--primary); border: none; border-radius: var(--radius);
  font-size: 13px; font-weight: 500; color: #fff; transition: var(--transition);
}
.btn-claim:hover:not(:disabled) { background: var(--primary-hover); box-shadow: 0 2px 8px rgba(80,70,229,0.3); }
.btn-claim:disabled { opacity: 0.35; cursor: not-allowed; }

.btn-view-details {
  display: flex; align-items: center; gap: 6px; padding: 10px 18px;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 13px; font-weight: 500; color: var(--text); transition: var(--transition);
}
.btn-view-details:hover { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }

/* =========================================
   CLAIM HISTORY
   ========================================= */
.claim-history { margin-bottom: 40px; }
.claim-history-list { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.claim-history-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border); transition: var(--transition);
}
.claim-history-item:last-child { border-bottom: none; }
.claim-history-item:hover { background: var(--bg-subtle); }
.claim-history-info { display: flex; align-items: center; gap: 14px; }
.claim-history-icon {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: var(--success-bg); border: 1px solid var(--success-border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.claim-history-icon svg { color: var(--success); }
.claim-history-details h4 { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 3px; }
.claim-history-date { font-size: 12px; color: var(--text-3); }
.claim-history-network { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--text-4); margin-top: 3px; font-weight: 500; }
.claim-history-amount { font-size: 16px; font-weight: 700; color: var(--text); letter-spacing: -0.3px; text-align: right; }
.claim-history-tx { font-family: var(--mono); font-size: 11px; color: var(--text-4); margin-top: 3px; }
.claim-history-tx a { color: var(--primary); }
.claim-history-tx a:hover { text-decoration: underline; }

/* =========================================
   VESTING GRID TABLE
   ========================================= */
.vesting-grid-container {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
}

.vesting-header {
  display: grid; grid-template-columns: 2.5fr 0.6fr 0.8fr 0.8fr 0.8fr 0.8fr;
  background: var(--bg-subtle); border-bottom: 1px solid var(--border);
}
.vesting-header-cell {
  padding: 12px 20px; font-size: 11px; font-weight: 600;
  color: var(--text-4); text-transform: uppercase; letter-spacing: 0.07em; white-space: nowrap;
}

.vesting-row {
  display: grid; grid-template-columns: 2.5fr 0.6fr 0.8fr 0.8fr 0.8fr 0.8fr;
  border-bottom: 1px solid var(--border); transition: background 0.15s; cursor: pointer;
}
.vesting-row:last-child { border-bottom: none; }
.vesting-row:hover { background: var(--bg-subtle); }

.vesting-cell {
  padding: 18px 20px; display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border); overflow: hidden; min-width: 0;
}
.vesting-cell:first-child { justify-content: flex-start; }
.vesting-cell:last-child { border-right: none; }

.vesting-project-compact { display: flex; align-items: center; gap: 12px; min-width: 0; width: 100%; }
.vesting-logo-small {
  width: 40px; height: 40px; border-radius: var(--radius-lg); border: 1px solid var(--border);
  object-fit: contain; background: var(--bg-subtle); padding: 5px; flex-shrink: 0;
}
.vesting-project-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.vesting-project-name { font-weight: 600; color: var(--text); font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vesting-project-symbol { font-family: var(--mono); font-size: 11px; font-weight: 500; color: var(--text-4); text-transform: uppercase; }
.vesting-project-meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

.vesting-network-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 500; color: var(--text-3);
  padding: 3px 8px; background: var(--bg-subtle); border-radius: var(--radius); border: 1px solid var(--border);
}
.vesting-schedule-info { font-size: 10px; font-weight: 500; color: var(--text-4); margin-top: 3px; }

.vesting-status-inline {
  display: inline-flex; align-items: center; padding: 3px 8px;
  border-radius: 999px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
.vesting-status-inline.active { background: var(--success-bg); color: var(--success); border: 1px solid var(--success-border); }
.vesting-status-inline.completed { background: var(--bg-subtle); color: var(--text-4); border: 1px solid var(--border); }

.vesting-progress-inline { display: flex; align-items: center; gap: 8px; width: 100%; min-width: 0; }
.vesting-progress-bar-tiny { flex: 1; height: 6px; background: var(--bg-subtle); border-radius: 3px; overflow: hidden; border: 1px solid var(--border); }
.vesting-progress-fill-tiny { height: 100%; background: linear-gradient(90deg, var(--primary) 0%, #818cf8 100%); border-radius: 3px; transition: width 0.6s ease; }
.vesting-progress-percent { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--text-3); white-space: nowrap; }

.vesting-cell-amount { font-family: var(--mono); font-weight: 600; color: var(--text); font-size: 13px; white-space: nowrap; justify-content: flex-end; }
.vesting-cell-amount.available { color: var(--success); font-weight: 700; }

.vesting-table-actions { display: flex; gap: 8px; justify-content: center; width: 100%; align-items: center; }

.btn-claim-small {
  height: 36px; display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: 0 14px; background: var(--primary); border: none; border-radius: var(--radius);
  font-size: 12px; font-weight: 500; color: #fff; transition: var(--transition); white-space: nowrap;
}
.btn-claim-text { font-size: 12px; font-weight: 500; }
.btn-claim-small:hover:not(:disabled) { background: var(--primary-hover); box-shadow: 0 2px 6px rgba(80,70,229,0.3); }
.btn-claim-small:disabled { opacity: 0.25; cursor: not-allowed; background: var(--bg-subtle); color: var(--text-4); }

.btn-info-small {
  width: 32px; height: 32px; padding: 0; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg);
  cursor: pointer; transition: var(--transition); color: var(--text-3);
}
.btn-info-small:hover { border-color: var(--primary-border); background: var(--primary-bg); color: var(--primary); }

.btn-info-inline {
  width: 24px; height: 24px; padding: 0; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg);
  cursor: pointer; transition: var(--transition); color: var(--text-3); flex-shrink: 0;
}
.btn-info-inline:hover { border-color: var(--primary-border); background: var(--primary-bg); color: var(--primary); }
.btn-info-inline svg { width: 11px; height: 11px; stroke-width: 2.5; }

.network-logo-tiny { width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--border); flex-shrink: 0; }

/* Details Panel */
.vesting-details-row {
  background: var(--bg-subtle); border-bottom: 1px solid var(--border);
  animation: slideDown 0.25s ease;
}
@keyframes slideDown { from { opacity: 0; max-height: 0; } to { opacity: 1; max-height: 500px; } }

.vesting-details-panel { padding: 24px; }
.vesting-details-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.vesting-detail-item { display: flex; flex-direction: column; gap: 6px; }
.vesting-detail-label { font-size: 11px; font-weight: 600; color: var(--text-4); text-transform: uppercase; letter-spacing: 0.06em; }
.vesting-detail-value { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--text); }

.vesting-details-actions { display: flex; gap: 10px; }
.btn-claim-full {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; background: var(--primary); border: none; border-radius: var(--radius);
  font-size: 13px; font-weight: 500; color: #fff; transition: var(--transition); cursor: pointer;
}
.btn-claim-full:hover:not(:disabled) { background: var(--primary-hover); box-shadow: 0 2px 8px rgba(80,70,229,0.3); }
.btn-claim-full:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-view-project {
  display: flex; align-items: center; gap: 6px; padding: 12px 20px;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 13px; font-weight: 500; color: var(--text); transition: var(--transition); cursor: pointer;
}
.btn-view-project:hover { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }

/* Claim History Table */
.claim-history-project { display: flex; align-items: center; gap: 10px; }
.claim-history-logo {
  width: 40px; height: 40px; border-radius: var(--radius-lg); border: 1px solid var(--border);
  object-fit: contain; background: var(--bg-subtle); padding: 5px; flex-shrink: 0;
}
.claim-history-project-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
.claim-history-project-name { font-weight: 600; color: var(--text); font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.claim-history-meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.claim-history-symbol { font-family: var(--mono); font-size: 11px; font-weight: 500; color: var(--text-4); text-transform: uppercase; }
.claim-history-vesting-info { font-size: 10px; font-weight: 500; color: var(--text-4); }
.claim-history-date { font-size: 12px; color: var(--text-3); font-family: var(--mono); }
.claim-history-tx { font-family: var(--mono); font-size: 12px; color: var(--primary); font-weight: 500; }
.claim-history-tx:hover { text-decoration: underline; }

.history-filter-container { display: flex; align-items: center; gap: 10px; }
.history-filter-label { font-size: 12px; font-weight: 500; color: var(--text-3); }
.history-filter-select {
  padding: 7px 12px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg); font-size: 13px; font-weight: 500; color: var(--text);
  cursor: pointer; transition: var(--transition); font-family: var(--font); min-width: 160px;
}
.history-filter-select:hover { border-color: var(--border-strong); }
.history-filter-select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-bg); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .summary-grid { grid-template-columns: repeat(2, 1fr); }
  .vesting-table-row { grid-template-columns: repeat(2, 1fr); }
  .vesting-details-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .hero-inner { padding: 0 20px; }
  .page-body { padding: 24px 20px 60px; }
  .summary-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .vesting-card { padding: 16px; }
  .vesting-card-header { flex-direction: column; align-items: flex-start; }
  .vesting-table-row { grid-template-columns: 1fr; gap: 10px; padding: 10px 0; }
  .vesting-actions { flex-direction: column; }
  .btn-claim { min-width: 100%; }
  .claim-history-item { flex-direction: column; align-items: flex-start; gap: 10px; }
  .claim-history-amount { text-align: left; }
  .vesting-grid-container { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .vesting-header, .vesting-row { min-width: 720px; }
  .vesting-header-cell, .vesting-cell { padding: 12px 12px; }
  .vesting-details-grid { grid-template-columns: 1fr; gap: 12px; }
  .vesting-details-actions { flex-direction: column; }
  .vesting-details-panel { padding: 20px; }
}
