/* ===== 数创融合平台 Global CSS ===== */
/* 配色变量 */
:root {
  --cinnabar: #C8161D;
  --gold: #C5975B;
  --beige: #F5F0E8;
  --ivory: #FEFCF9;
  --ink: #2C2420;
  --black: #0F0D0B;
  --cinnabar-light: #d4534a;
  --gold-light: #d4b07a;
  --beige-dark: #e8e0d0;
  --shadow-sm: 0 1px 3px rgba(15,13,11,0.08);
  --shadow-md: 0 4px 12px rgba(15,13,11,0.12);
  --shadow-lg: 0 8px 24px rgba(15,13,11,0.16);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-sans: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Noto Serif SC', 'SimSun', serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--beige);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ===== Mobile Header ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: var(--ivory);
  border-bottom: 1px solid var(--beige-dark);
}
.header-logo { display: flex; align-items: center; gap: 8px; }
.logo-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--cinnabar), var(--gold));
  color: #fff; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
}
.logo-text { font-size: 16px; font-weight: 700; color: var(--ink); }
.header-actions { display: flex; gap: 8px; }
.header-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--beige); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.header-btn:hover { background: var(--beige-dark); }

/* ===== PC Header ===== */
.pc-header {
  display: none;
  position: sticky; top: 0; z-index: 100;
  align-items: center; justify-content: space-between;
  padding: 0 32px; height: 64px;
  background: var(--ivory);
  border-bottom: 1px solid var(--beige-dark);
}
.pc-logo { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; color: var(--ink); }
.pc-nav { display: flex; gap: 4px; }
.pc-nav-link {
  padding: 8px 16px; border-radius: var(--radius-md);
  font-size: 15px; font-weight: 500; color: var(--ink);
  display: flex; flex-direction: column; align-items: center;
  transition: background 0.2s;
}
.pc-nav-link:hover { background: var(--beige); }
.pc-nav-link.active { background: var(--cinnabar); color: #fff; }
.nav-sub { font-size: 11px; opacity: 0.7; font-weight: 400; }
.pc-header-actions { display: flex; align-items: center; gap: 12px; }

/* ===== Bottom Nav ===== */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  display: flex; background: var(--ivory);
  border-top: 1px solid var(--beige-dark);
  padding: 6px 0 env(safe-area-inset-bottom, 6px);
}
.nav-tab {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 2px; padding: 6px 4px;
  font-size: 12px; color: var(--ink); opacity: 0.6;
  transition: all 0.2s;
}
.nav-tab.active { opacity: 1; color: var(--cinnabar); }
.tab-icon { font-size: 20px; }
.tab-label { font-weight: 600; font-size: 12px; }
.tab-sub { font-size: 10px; color: var(--gold); }

/* ===== Sub Nav ===== */
.sub-nav {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: var(--ivory);
  border-bottom: 1px solid var(--beige-dark);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.sub-nav::-webkit-scrollbar { display: none; }
.sub-nav-back {
  white-space: nowrap; font-size: 13px; color: var(--gold);
  font-weight: 500; padding: 6px 12px;
  border: 1px solid var(--gold); border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.sub-nav-tabs { display: flex; gap: 4px; }
.sub-nav-tab {
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500; white-space: nowrap;
  color: var(--ink); background: var(--beige);
  transition: all 0.2s;
}
.sub-nav-tab.active { background: var(--cinnabar); color: #fff; }
.sub-nav-tab:hover:not(.active) { background: var(--beige-dark); }

/* ===== Page Content ===== */
.page-content { padding: 16px; padding-bottom: 100px; }
.page-title {
  font-family: var(--font-serif); font-size: 22px; font-weight: 700;
  color: var(--ink); margin-bottom: 16px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-md);
  font-size: 15px; font-weight: 600;
  transition: all 0.2s;
}
.btn-primary { background: var(--cinnabar); color: #fff; }
.btn-primary:hover { background: var(--cinnabar-light); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #fff; }
.btn-outline { border: 1.5px solid var(--cinnabar); color: var(--cinnabar); background: transparent; }
.btn-outline:hover { background: var(--cinnabar); color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* ===== Cards ===== */
.card {
  background: var(--ivory); border-radius: var(--radius-md);
  padding: 16px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-dark);
}

/* ===== Section ===== */
.section { margin-bottom: 24px; }
.section-title {
  font-size: 17px; font-weight: 700; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.section-title::before {
  content: ''; width: 3px; height: 18px;
  background: var(--cinnabar); border-radius: 2px;
}

/* ===== Form Controls ===== */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--ink); }
.form-input {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--beige-dark); background: var(--ivory);
  font-size: 14px; color: var(--ink); outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--cinnabar); }
.form-select {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--beige-dark); background: var(--ivory);
  font-size: 14px; color: var(--ink); outline: none;
  -webkit-appearance: none;
}

/* ===== Tags/Badges ===== */
.tag {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 600;
}
.tag-success { background: #e8f5e9; color: #2e7d32; }
.tag-warning { background: #fff3e0; color: #e65100; }
.tag-info { background: #e3f2fd; color: #1565c0; }
.tag-danger { background: #fce4ec; color: #c62828; }
.tag-gold { background: #fff8e1; color: #f57f17; }

/* ===== Grid ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

/* ===== Stats Cards ===== */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.stat-card {
  background: var(--ivory); border-radius: var(--radius-md);
  padding: 16px 12px; text-align: center;
  border: 1px solid var(--beige-dark);
}
.stat-value { font-size: 22px; font-weight: 700; color: var(--cinnabar); }
.stat-label { font-size: 12px; color: #888; margin-top: 4px; }

/* ===== Scroll Row ===== */
.scroll-row {
  display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.scroll-row::-webkit-scrollbar { display: none; }
.scroll-card {
  flex: 0 0 200px; background: var(--ivory); border-radius: var(--radius-md);
  padding: 14px; border: 1px solid var(--beige-dark);
  box-shadow: var(--shadow-sm);
}

/* ===== Search Bar ===== */
.search-bar {
  display: flex; gap: 8px; margin-bottom: 16px;
}
.search-input {
  flex: 1; padding: 10px 14px; border-radius: var(--radius-xl);
  border: 1.5px solid var(--beige-dark); background: var(--ivory);
  font-size: 14px; outline: none;
}
.search-input:focus { border-color: var(--cinnabar); }
.search-btn {
  padding: 10px 18px; border-radius: var(--radius-xl);
  background: var(--cinnabar); color: #fff; font-size: 14px; font-weight: 600;
}

/* ===== Filter Row ===== */
.filter-row {
  display: flex; gap: 8px; margin-bottom: 16px; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.filter-row::-webkit-scrollbar { display: none; }
.filter-chip {
  padding: 6px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 500; white-space: nowrap;
  background: var(--ivory); border: 1px solid var(--beige-dark);
  color: var(--ink); transition: all 0.2s;
}
.filter-chip.active, .filter-chip:hover {
  background: var(--cinnabar); color: #fff; border-color: var(--cinnabar);
}

/* ===== Accordion ===== */
.accordion-item { border-bottom: 1px solid var(--beige-dark); }
.accordion-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; cursor: pointer; font-weight: 600; font-size: 14px;
}
.accordion-header::after { content: '+'; font-size: 18px; color: var(--gold); transition: transform 0.3s; }
.accordion-item.open .accordion-header::after { content: '−'; }
.accordion-body { padding: 0 0 14px; font-size: 13px; color: #666; display: none; line-height: 1.8; }
.accordion-item.open .accordion-body { display: block; }

/* ===== Floating Button ===== */
.float-btn {
  position: fixed; bottom: 90px; right: 16px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cinnabar), var(--cinnabar-light));
  color: #fff; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s;
}
.float-btn:hover { transform: scale(1.08); }

/* ===== User Avatar ===== */
.avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cinnabar), var(--gold));
  color: #fff; font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.avatar-lg { width: 64px; height: 64px; font-size: 24px; }

/* ===== CTA Fixed ===== */
.cta-fixed {
  position: fixed; bottom: 80px; left: 16px; right: 16px;
  z-index: 90; padding: 0 0 env(safe-area-inset-bottom, 0);
}
.cta-fixed .btn { box-shadow: var(--shadow-lg); width: 100%; }

/* ===== Steps/Process ===== */
.steps { display: flex; justify-content: space-between; margin: 24px 0; }
.step { flex: 1; text-align: center; position: relative; }
.step::after {
  content: ''; position: absolute; top: 18px; right: -50%;
  width: 100%; height: 2px; background: var(--beige-dark);
}
.step:last-child::after { display: none; }
.step-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cinnabar); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; margin-bottom: 8px; position: relative; z-index: 1;
}
.step-title { font-size: 12px; font-weight: 600; }

/* ===== Breadcrumb ===== */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px; font-size: 13px; color: #999;
  background: var(--ivory); border-bottom: 1px solid var(--beige-dark);
}
.breadcrumb a { color: var(--gold); }

/* ===== CTA Fixed ===== */
.cta-fixed {
  position: fixed; bottom: 80px; left: 16px; right: 16px;
  z-index: 90;
}
.cta-fixed .btn { box-shadow: var(--shadow-lg); width: 100%; }

/* ===== Tab Switcher ===== */
.tab-switcher {
  display: flex; background: var(--beige); border-radius: var(--radius-md);
  padding: 3px; margin-bottom: 20px;
}
.tab-switcher .tab-item {
  flex: 1; padding: 10px; text-align: center;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
  color: var(--ink); opacity: 0.6; transition: all 0.2s;
}
.tab-switcher .tab-item.active {
  background: var(--ivory); opacity: 1;
  box-shadow: var(--shadow-sm);
}

/* ===== Toast Notification ===== */
.toast {
  position: fixed; top: 80px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; padding: 10px 24px;
  border-radius: var(--radius-xl); font-size: 13px; z-index: 200;
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.toast.show { opacity: 1; }

/* ===== Divider ===== */
.divider { height: 1px; background: var(--beige-dark); margin: 20px 0; }

/* ===== Text Styles ===== */
.text-cinnabar { color: var(--cinnabar); }
.text-gold { color: var(--gold); }
.text-muted { color: #999; }
.text-sm { font-size: 13px; }
.text-xs { font-size: 11px; }
.fw-bold { font-weight: 700; }
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }

/* ===== PC Layout ===== */
.pc-container {
  display: none;
  max-width: 1200px; margin: 0 auto; padding: 24px 32px;
}

/* ===== Responsive: Tablet+ ===== */
@media (min-width: 768px) {
  .header { display: none; }
  .pc-header { display: flex; }
  .bottom-nav { display: none; }
  .pc-container { display: block; }
  .page-content { padding: 24px 0; padding-bottom: 40px; max-width: 1200px; margin: 0 auto; }
  .sub-nav { padding: 12px 32px; justify-content: center; }
  .grid-2 { grid-template-columns: repeat(3, 1fr); }
  .grid-3 { grid-template-columns: repeat(4, 1fr); }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .cta-fixed { display: none; }
}

/* ===== Logo Grid for Partners ===== */
.logo-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.logo-item {
  aspect-ratio: 1; background: var(--beige); border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; border: 1px solid var(--beige-dark);
}
.logo-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: #ccc; display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: #999;
}
.logo-name { font-size: 12px; color: #888; }

@media (min-width: 768px) {
  .logo-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ===== Chart Placeholder ===== */
.chart-bar {
  display: flex; align-items: flex-end; gap: 12px;
  height: 120px; padding: 8px 0;
}
.chart-bar-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 4px;
}
.chart-bar-fill {
  width: 100%; border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--cinnabar), var(--gold));
  transition: height 0.3s;
}
.chart-bar-label { font-size: 10px; color: #999; }
.chart-bar-value { font-size: 11px; font-weight: 600; color: var(--cinnabar); }

/* ===== Fade in animation ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.4s ease-out both; }

/* ===== Login page specific ===== */
.login-wrapper {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--beige); padding: 24px;
}
.login-card {
  width: 100%; max-width: 400px; background: var(--ivory);
  border-radius: var(--radius-lg); padding: 32px 24px;
  box-shadow: var(--shadow-md);
}
.login-logo {
  text-align: center; margin-bottom: 28px;
}
.login-logo .logo-icon {
  width: 56px; height: 56px; font-size: 24px; margin: 0 auto 12px;
}
.login-logo h2 { font-family: var(--font-serif); font-size: 20px; font-weight: 700; }
.login-logo p { font-size: 13px; color: #999; margin-top: 4px; }

/* ===== Code input ===== */
.code-row { display: flex; gap: 8px; }
.code-row .form-input { flex: 1; }
.code-btn {
  white-space: nowrap; padding: 10px 14px;
  background: var(--gold); color: #fff;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 500;
}
.third-login { display: flex; justify-content: center; gap: 24px; margin: 24px 0; }
.third-login-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--beige); display: flex; align-items: center;
  justify-content: center; font-size: 20px;
  border: 1px solid var(--beige-dark);
}

/* ===== Progress bar ===== */
.progress-bar {
  height: 6px; background: var(--beige); border-radius: 3px;
  overflow: hidden; margin-top: 8px;
}
.progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--cinnabar), var(--gold));
  border-radius: 3px; transition: width 0.3s;
}

/* ===== Lawyer Card ===== */
.lawyer-card {
  background: var(--ivory); border-radius: var(--radius-md);
  padding: 16px; border: 1px solid var(--beige-dark);
  display: flex; gap: 12px; align-items: center;
}
.lawyer-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff; font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lawyer-info { flex: 1; }
.lawyer-name { font-size: 15px; font-weight: 700; }
.lawyer-spec { font-size: 12px; color: #888; margin-top: 2px; }
.lawyer-stats { font-size: 12px; color: var(--cinnabar); margin-top: 4px; font-weight: 500; }

/* ===== Case Card ===== */
.case-card {
  background: var(--ivory); border-radius: var(--radius-md);
  padding: 16px; border: 1px solid var(--beige-dark); margin-bottom: 12px;
}
.case-title { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.case-desc { font-size: 13px; color: #666; line-height: 1.7; }
.case-meta { display: flex; gap: 16px; margin-top: 10px; font-size: 12px; color: #999; }

/* ===== Product Feature Card ===== */
.feature-card {
  background: var(--ivory); border-radius: var(--radius-md);
  padding: 20px; border: 1px solid var(--beige-dark);
  text-align: center; transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); }
.feature-icon { font-size: 32px; margin-bottom: 10px; }
.feature-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature-desc { font-size: 12px; color: #888; line-height: 1.6; }

/* ===== Hero Card for Marketing ===== */
.hero-card {
  border-radius: var(--radius-lg); padding: 28px 20px;
  background: linear-gradient(135deg, #C8161D, #C5975B);
  color: #fff; position: relative; overflow: hidden;
}
.hero-card h3 { font-family: var(--font-serif); font-size: 20px; margin-bottom: 8px; }
.hero-card p { font-size: 13px; opacity: 0.9; line-height: 1.6; }
.hero-card .btn {
  margin-top: 16px; background: rgba(255,255,255,0.2);
  color: #fff; border: 1px solid rgba(255,255,255,0.4);
}
.hero-card .btn:hover { background: rgba(255,255,255,0.3); }

/* ===== Floating customer service ===== */
.cs-float {
  position: fixed; bottom: 100px; right: 16px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: #fff; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}

/* ===== Form Page ===== */
.form-page { max-width: 480px; margin: 0 auto; }
.form-section { margin-bottom: 20px; }
.form-section-title { font-size: 15px; font-weight: 600; margin-bottom: 12px; padding-left: 8px; border-left: 3px solid var(--cinnabar); }

/* ===== No-bottom-nav pages ===== */
body.no-bottom-nav .page-content { padding-bottom: 40px; }

/* ===== User center grid ===== */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.menu-item {
  background: var(--ivory); border-radius: var(--radius-md);
  padding: 16px 8px; text-align: center;
  border: 1px solid var(--beige-dark);
  transition: background 0.2s;
}
.menu-item:hover { background: var(--beige); }
.menu-item-icon { font-size: 28px; margin-bottom: 6px; }
.menu-item-label { font-size: 13px; font-weight: 500; }

/* ===== Record list ===== */
.record-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--beige-dark);
}
.record-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.record-text { flex: 1; font-size: 13px; }
.record-time { font-size: 12px; color: #999; flex-shrink: 0; }

/* ===== Help center ===== */
.help-category { margin-bottom: 16px; }
.help-category-title {
  font-size: 15px; font-weight: 700; padding: 12px 0;
  display: flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.help-category-title .arrow { font-size: 12px; color: var(--gold); transition: transform 0.3s; }
.help-category.open .help-category-title .arrow { transform: rotate(90deg); }
.help-qa { padding: 0 0 0 20px; display: none; }
.help-category.open .help-qa { display: block; }
.help-q {
  font-size: 13px; font-weight: 600; padding: 10px 0;
  border-bottom: 1px solid var(--beige-dark);
  cursor: pointer;
}
.help-a {
  font-size: 12px; color: #666; padding: 8px 0 12px;
  line-height: 1.8; display: none;
}
.help-q.open + .help-a { display: block; }
.help-q::before { content: 'Q '; color: var(--cinnabar); }

/* ===== Contact info ===== */
.contact-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; font-size: 14px;
  border-bottom: 1px solid var(--beige-dark);
}
.contact-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--beige); display: flex; align-items: center;
  justify-content: center; font-size: 16px; flex-shrink: 0;
}

/* ===== PC-only utility ===== */
@media (min-width: 768px) {
  .mobile-only { display: none !important; }
}
@media (max-width: 767px) {
  .pc-only { display: none !important; }
}

/* ===== Highlight Card ===== */
.highlight-card {
  background: linear-gradient(135deg, #fff8e1, #fff3e0);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 16px; margin-bottom: 16px;
}
.highlight-card .hl-title {
  font-size: 14px; font-weight: 700; color: var(--gold);
  margin-bottom: 6px;
}
.highlight-card .hl-text {
  font-size: 13px; color: var(--ink); line-height: 1.7;
}

/* ===== Application Status ===== */
.app-status {
  display: flex; align-items: center; gap: 12px;
  padding: 16px; background: var(--ivory);
  border-radius: var(--radius-md); border: 1px solid var(--beige-dark);
  margin-bottom: 12px;
}
.app-status-icon {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.app-status-icon.pending { background: #fff3e0; }
.app-status-icon.approved { background: #e8f5e9; }
.app-status-icon.rejected { background: #fce4ec; }

/* ===== Empty State ===== */
.empty-state {
  text-align: center; padding: 48px 24px; color: #999;
}
.empty-state-icon { font-size: 48px; margin-bottom: 12px; }
.empty-state-text { font-size: 14px; }

/* ===== Copyright ===== */
.copyright {
  text-align: center; padding: 24px; font-size: 12px; color: #999;
}
