/* MARCHAA Public Website — Light Theme */
/* Professional, family-friendly, trustworthy */

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

:root {
  --bg:          #f8f9fa;
  --bg-white:    #ffffff;
  --card:        #ffffff;
  --card-hover:  #f0f4f8;
  --border:      #e2e8f0;
  --border-light:#f1f5f9;
  --orange:      #ff5722;
  --orange-h:    #e64a19;
  --orange-light:#fff3ef;
  --text:        #1a202c;
  --text-muted:  #64748b;
  --text-dim:    #94a3b8;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow:      0 4px 16px rgba(0,0,0,.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,.10);
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --font-sans:   'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-disp:   'Space Grotesk', var(--font-sans);
  --nav-h:       68px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4,h5 { font-family: var(--font-disp); font-weight: 700; color: var(--text); line-height: 1.3; }
h1 { font-size: clamp(28px, 5vw, 48px); }
h2 { font-size: clamp(22px, 3.5vw, 36px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: .3rem; }

/* ── Utility ─────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-orange { color: var(--orange); }
.hidden { display: none !important; }

/* ── Alerts ──────────────────────────────── */
.alert { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; margin-bottom: 16px; }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.alert-error   { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.alert-info    { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; border: none; cursor: pointer;
  transition: all .15s; text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-h); color: #fff; }
.btn-secondary { background: var(--bg-white); color: var(--text); border: 1.5px solid var(--border); }
.btn-secondary:hover { background: var(--bg); border-color: var(--text-muted); }
.btn-outline { background: transparent; color: var(--orange); border: 1.5px solid var(--orange); }
.btn-outline:hover { background: var(--orange); color: #fff; }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: var(--radius); }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Badge ───────────────────────────────── */
.badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 99px;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .4px;
}
.badge-orange  { background: var(--orange-light); color: var(--orange); }
.badge-green   { background: #f0fdf4; color: #15803d; }
.badge-blue    { background: #eff6ff; color: #1d4ed8; }
.badge-gray    { background: #f1f5f9; color: var(--text-muted); }

/* ── Navbar ──────────────────────────────── */
.pub-navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: var(--nav-h);
}
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  height: 100%;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text { font-family: var(--font-disp); font-size: 22px; font-weight: 800; color: var(--orange); }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 7px 14px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: all .15s; text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--orange); background: var(--orange-light); text-decoration: none; }
.nav-cta { margin-left: 8px; }
.nav-mobile-btn {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--text); font-size: 22px;
}
.nav-mobile-menu {
  display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
  background: var(--bg-white); border-bottom: 1px solid var(--border);
  padding: 12px 24px 20px; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu .nav-link { display: block; padding: 10px 14px; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; align-items: center; margin-left: auto; }
}

/* ── Hero ────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #fff8f6 0%, #ffffff 60%, #fff3ef 100%);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge { margin-bottom: 20px; }
.hero-title { font-size: clamp(32px, 5.5vw, 56px); font-weight: 800; margin-bottom: 20px; }
.hero-title span { color: var(--orange); }
.hero-desc { font-size: 18px; color: var(--text-muted); margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 40px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-disp); font-size: 28px; font-weight: 800; color: var(--orange); }
.stat-label { font-size: 13px; color: var(--text-muted); }
.hero-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.hero-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow-sm); transition: transform .2s;
}
.hero-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.hero-card-icon { font-size: 32px; margin-bottom: 12px; }
.hero-card-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.hero-card-text { font-size: 13px; color: var(--text-muted); }
.hero-card.featured { grid-column: 1 / -1; background: var(--orange); color: #fff; }
.hero-card.featured .hero-card-title { color: #fff; }
.hero-card.featured .hero-card-text { color: rgba(255,255,255,.8); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 0; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 20px; }
}

/* ── Section ─────────────────────────────── */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-alt { background: var(--bg-white); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header p { color: var(--text-muted); max-width: 580px; margin: 12px auto 0; font-size: 17px; }
.section-kicker {
  display: inline-block; font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; color: var(--orange); margin-bottom: 12px;
}

/* ── Listing Card ────────────────────────── */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.listing-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none; color: inherit; display: block;
}
.listing-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-3px); text-decoration: none;
}
.listing-card-img {
  aspect-ratio: 4/3; overflow: hidden; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: var(--text-dim);
}
.listing-card-img img { width: 100%; height: 100%; object-fit: cover; }
.listing-card-body { padding: 14px 16px; }
.listing-card-category {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--text-muted); margin-bottom: 6px;
}
.listing-card-title {
  font-size: 15px; font-weight: 600; color: var(--text);
  margin-bottom: 8px; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.listing-card-meta { display: flex; justify-content: space-between; align-items: center; }
.listing-card-price { font-size: 18px; font-weight: 800; color: var(--orange); font-family: var(--font-disp); }
.listing-card-condition { font-size: 12px; color: var(--text-muted); }
.listing-card-footer { padding: 10px 16px; border-top: 1px solid var(--border-light); font-size: 12px; color: var(--text-muted); }

/* ── Category Cards ──────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.category-card {
  background: var(--bg-white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 28px 20px;
  text-align: center; cursor: pointer;
  transition: all .2s; text-decoration: none; color: inherit; display: block;
}
.category-card:hover {
  border-color: var(--orange); background: var(--orange-light);
  text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow);
}
.category-card-icon { font-size: 40px; margin-bottom: 12px; }
.category-card-name { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.category-card-count { font-size: 13px; color: var(--text-muted); }

/* ── Steps (How It Works) ────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px;
}
.step-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  position: relative;
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-family: var(--font-disp); font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-icon { font-size: 36px; margin-bottom: 16px; }
.step-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step-text { font-size: 14px; color: var(--text-muted); }

/* ── CTA Banner ──────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #ff7043 100%);
  border-radius: var(--radius-lg); padding: 56px 48px;
  color: #fff; text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 28px; font-size: 17px; }
.cta-banner .btn-secondary { background: #fff; color: var(--orange); border: none; }
.cta-banner .btn-secondary:hover { background: #fff3ef; color: var(--orange-h); }
.cta-banner .btn-outline { border-color: rgba(255,255,255,.7); color: #fff; }
.cta-banner .btn-outline:hover { background: rgba(255,255,255,.15); color: #fff; }

/* ── Marketplace Filters ─────────────────── */
.market-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; }
.filter-panel {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; align-self: start; position: sticky; top: 88px;
}
.filter-group { margin-bottom: 24px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); margin-bottom: 10px; }
.filter-options { display: flex; flex-direction: column; gap: 6px; }
.filter-option {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; cursor: pointer; padding: 4px 0;
}
.filter-option input { accent-color: var(--orange); }
.filter-price-row { display: flex; gap: 8px; }
.filter-price-row input {
  flex: 1; padding: 8px 10px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px; color: var(--text);
}
.filter-price-row input:focus { outline: none; border-color: var(--orange); }
.search-bar {
  display: flex; gap: 0; margin-bottom: 24px;
}
.search-bar input {
  flex: 1; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 15px; color: var(--text); background: var(--bg-white);
}
.search-bar input:focus { outline: none; border-color: var(--orange); }
.search-bar button {
  padding: 12px 18px; background: var(--orange); color: #fff;
  border: none; cursor: pointer; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 16px;
}
.sort-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.sort-bar label { font-size: 14px; font-weight: 600; color: var(--text-muted); }
.sort-select {
  padding: 8px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; color: var(--text); background: var(--bg-white); cursor: pointer;
}
.sort-select:focus { outline: none; border-color: var(--orange); }
.results-count { margin-left: auto; font-size: 14px; color: var(--text-muted); }

@media (max-width: 900px) {
  .market-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
}

/* ── Pagination ──────────────────────────── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.page-btn {
  min-width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  background: var(--bg-white); cursor: pointer; text-decoration: none;
  transition: all .15s;
}
.page-btn:hover, .page-btn.active {
  background: var(--orange); border-color: var(--orange); color: #fff; text-decoration: none;
}
.page-btn.disabled { opacity: .4; pointer-events: none; }

/* ── Listing Detail ──────────────────────── */
.listing-detail { display: grid; grid-template-columns: 1fr 380px; gap: 32px; }
.listing-gallery { border-radius: var(--radius); overflow: hidden; }
.listing-main-img {
  aspect-ratio: 4/3; background: var(--bg); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: var(--text-dim); overflow: hidden;
  border: 1px solid var(--border);
}
.listing-main-img img { width: 100%; height: 100%; object-fit: cover; }
.listing-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.listing-thumb {
  width: 72px; height: 72px; border-radius: var(--radius-sm);
  border: 2px solid var(--border); overflow: hidden; cursor: pointer;
  background: var(--bg); flex-shrink: 0;
}
.listing-thumb img { width: 100%; height: 100%; object-fit: cover; }
.listing-thumb.active { border-color: var(--orange); }
.listing-info { }
.listing-title-area { margin-bottom: 20px; }
.listing-title { font-size: clamp(22px, 3vw, 32px); font-weight: 800; margin-bottom: 8px; }
.listing-price { font-size: 36px; font-weight: 800; color: var(--orange); font-family: var(--font-disp); margin-bottom: 12px; }
.listing-meta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.listing-sidebar {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; align-self: start;
  position: sticky; top: 88px;
}
.seller-card { display: flex; gap: 14px; align-items: center; margin-bottom: 20px; }
.seller-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange-light); display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0; font-family: var(--font-disp); font-weight: 700; color: var(--orange);
}
.seller-name { font-size: 15px; font-weight: 700; }
.seller-meta { font-size: 13px; color: var(--text-muted); }
.listing-desc { font-size: 15px; line-height: 1.7; color: var(--text); }
.listing-desc h3 { margin-top: 24px; margin-bottom: 8px; }

@media (max-width: 900px) {
  .listing-detail { grid-template-columns: 1fr; }
  .listing-sidebar { position: static; }
}

/* ── Profile ─────────────────────────────── */
.profile-header {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px; margin-bottom: 32px;
  display: flex; gap: 28px; align-items: flex-start;
}
.profile-avatar-lg {
  width: 96px; height: 96px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange-light); display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: var(--orange); font-family: var(--font-disp); font-weight: 800;
}
.profile-name { font-size: 28px; font-weight: 800; margin-bottom: 6px; }
.profile-bio { color: var(--text-muted); max-width: 560px; }
.profile-stats { display: flex; gap: 24px; margin-top: 16px; }
.profile-stat-num { font-size: 24px; font-weight: 800; color: var(--orange); font-family: var(--font-disp); }
.profile-stat-label { font-size: 12px; color: var(--text-muted); }

@media (max-width: 640px) {
  .profile-header { flex-direction: column; }
}

/* ── CMS Page ────────────────────────────── */
.cms-content {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px;
  max-width: 820px; margin: 0 auto;
}
.cms-content h2 { margin-top: 36px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--border-light); }
.cms-content h2:first-child { margin-top: 0; }
.cms-content h3 { margin-top: 24px; margin-bottom: 8px; font-size: 18px; }
.cms-content ul, .cms-content ol { margin-bottom: 16px; }
.cms-content li { margin-bottom: 6px; }
.cms-content strong { color: var(--text); }
.cms-content a { color: var(--orange); }

@media (max-width: 640px) {
  .cms-content { padding: 28px 20px; }
}

/* ── How It Works ────────────────────────── */
.how-section { padding: 72px 0; }
.how-block { margin-bottom: 64px; }
.how-block:last-child { margin-bottom: 0; }
.how-block-header { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.how-block-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: var(--orange-light); display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0;
}
.how-block h2 { margin: 0; font-size: 26px; }

/* ── Buy Marchips ────────────────────────── */
.marchips-hero {
  background: linear-gradient(135deg, #fff8f6, #ffffff);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 56px; text-align: center; margin-bottom: 40px;
}
.marchip-coin { font-size: 64px; margin-bottom: 16px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 40px; }
.pricing-card {
  background: var(--bg-white); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
  transition: all .2s;
}
.pricing-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.pricing-card.popular { border-color: var(--orange); background: var(--orange-light); }
.pricing-card.popular .popular-tag {
  background: var(--orange); color: #fff; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  padding: 3px 10px; border-radius: 99px; display: inline-block; margin-bottom: 12px;
}
.pricing-marchips { font-size: 40px; font-weight: 800; color: var(--orange); font-family: var(--font-disp); }
.pricing-label { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.pricing-price { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.faq-list { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  padding: 20px 24px; font-size: 15px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-question:hover { background: var(--bg); }
.faq-answer { padding: 0 24px 20px; color: var(--text-muted); font-size: 14px; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-chevron { transition: transform .2s; font-size: 18px; color: var(--text-muted); }

/* ── Driver Page ─────────────────────────── */
.driver-hero {
  background: linear-gradient(135deg, #fff8f6, #ffffff);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 56px; text-align: center; margin-bottom: 40px;
}
.driver-icon { font-size: 64px; margin-bottom: 16px; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 40px; }
.benefit-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; text-align: center;
}
.benefit-icon { font-size: 36px; margin-bottom: 12px; }
.benefit-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.benefit-text { font-size: 14px; color: var(--text-muted); }

/* ── Footer ──────────────────────────────── */
.pub-footer {
  background: var(--bg-white); border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 48px;
}
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-logo img { height: 36px; width: auto; }
.footer-brand-name { font-family: var(--font-disp); font-size: 20px; font-weight: 800; color: var(--orange); }
.footer-brand-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; max-width: 280px; }
.footer-col-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--text); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border-light); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-dim); flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: var(--text-dim); }
.footer-bottom-links a:hover { color: var(--orange); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Admin Migrations ────────────────────── */
.admin-page { min-height: 100vh; background: var(--bg); padding: 40px 0; }
.admin-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; margin-bottom: 24px;
}
.admin-card h2 { font-size: 20px; margin-bottom: 16px; }
.migration-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.migration-table th {
  text-align: left; padding: 10px 14px; background: var(--bg);
  border-bottom: 2px solid var(--border); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted);
}
.migration-table td { padding: 12px 14px; border-bottom: 1px solid var(--border-light); }
.migration-table tr:last-child td { border-bottom: none; }
.status-dot {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600;
}
.status-dot::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: currentColor;
}
.status-green { color: #15803d; }
.status-orange { color: var(--orange); }

/* ── Empty State ─────────────────────────── */
.empty-state { text-align: center; padding: 64px 24px; }
.empty-icon { font-size: 56px; margin-bottom: 16px; }
.empty-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.empty-text { color: var(--text-muted); margin-bottom: 24px; }

/* ── No-results ──────────────────────────── */
.no-results { text-align: center; padding: 48px; background: var(--bg-white); border-radius: var(--radius); border: 1px solid var(--border); }
