/* ============================================================
   Design Tokens — 家委小程序原型
   ============================================================ */
:root {
  /* Color — Primary (信任蓝) */
  --color-primary:        #2563EB;
  --color-primary-light:  #3B82F6;
  --color-primary-dark:   #1D4ED8;
  --color-primary-soft:   #EFF6FF;
  --color-primary-bg:     #DBEAFE;

  /* Color — Accent (温暖橙) */
  --color-accent:         #F97316;
  --color-accent-light:   #FB923C;
  --color-accent-soft:    #FFF7ED;

  /* Color — Semantic */
  --color-success:        #10B981;
  --color-success-soft:   #ECFDF5;
  --color-warning:        #F59E0B;
  --color-warning-soft:   #FEF3C7;
  --color-danger:         #EF4444;
  --color-danger-soft:    #FEF2F2;

  /* Color — Neutral */
  --color-bg:             #F1F5F9;
  --color-surface:        #FFFFFF;
  --color-surface-2:      #F8FAFC;
  --color-border:         #E2E8F0;
  --color-border-light:   #F1F5F9;
  --color-text:           #0F172A;
  --color-text-sub:       #64748B;
  --color-text-muted:     #94A3B8;
  --color-text-inverse:   #FFFFFF;

  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --font-size-xs:  10px;
  --font-size-sm:  12px;
  --font-size-base: 14px;
  --font-size-md:  16px;
  --font-size-lg:  18px;
  --font-size-xl:  20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 28px;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  20px;
  --radius-full: 9999px;

  /* Shadow */
  --shadow-sm:  0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md:  0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-lg:  0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 2px 8px rgba(15, 23, 42, 0.05);

  /* Spacing (4px base) */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;

  /* Layout */
  --tabbar-height: 56px;
  --tabbar-safe-bottom: env(safe-area-inset-bottom, 0px);
  --header-height: 44px;
  --max-content-width: 480px;

  /* Motion */
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;
  --easing-default: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  min-height: 100dvh;
  max-width: var(--max-content-width);
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: transparent;
  color: inherit;
}

ul, ol { list-style: none; }

img { max-width: 100%; display: block; }

/* ============================================================
   App Shell — 移动端小程序壳
   ============================================================ */
.app {
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: calc(var(--tabbar-height) + var(--tabbar-safe-bottom));
  position: relative;
}

/* Header / Nav bar */
.app-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-4);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border-light);
}

.app-header--transparent {
  background: transparent;
  border-bottom: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.app-header__title {
  font-size: var(--font-size-md);
  font-weight: 600;
  color: var(--color-text);
}

.app-header__left,
.app-header__right {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  min-width: 60px;
}

.app-header__right { justify-content: flex-end; }

/* Icon button */
.icon-btn {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text);
  transition: background var(--duration-fast) var(--easing-default);
}
.icon-btn:active { background: var(--color-border-light); }
.icon-btn svg { width: 20px; height: 20px; stroke-width: 1.8; }

/* Page content */
.page-content {
  padding: var(--space-4);
}

/* ============================================================
   Bottom Tab Bar — 底部导航（Canonical Nav）
   ============================================================ */
.tabbar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-content-width);
  height: calc(var(--tabbar-height) + var(--tabbar-safe-bottom));
  padding-bottom: var(--tabbar-safe-bottom);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-light);
  display: flex;
  z-index: 100;
  box-shadow: 0 -2px 12px rgba(15, 23, 42, 0.04);
}

.tabbar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  transition: color var(--duration-fast) var(--easing-default);
  position: relative;
}

.tabbar__item svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.tabbar__item.active {
  color: var(--color-primary);
}

.tabbar__item.active svg {
  stroke-width: 2.2;
}

.tabbar__badge {
  position: absolute;
  top: 4px;
  right: 50%;
  transform: translateX(14px);
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--color-danger);
  color: #fff;
  font-size: 10px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* ============================================================
   Components — Card
   ============================================================ */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
}

.card--no-padding { padding: 0; }
.card--flat { box-shadow: none; border: 1px solid var(--color-border-light); }

.card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.card__title {
  font-size: var(--font-size-md);
  font-weight: 600;
  color: var(--color-text);
}

.card__more {
  font-size: var(--font-size-sm);
  color: var(--color-text-sub);
  display: flex;
  align-items: center;
  gap: 2px;
}

.card__more svg { width: 14px; height: 14px; }

/* ============================================================
   Components — Button
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: 0 var(--space-4);
  height: 40px;
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-weight: 500;
  transition: all var(--duration-fast) var(--easing-default);
  white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; }

.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn--primary:active { background: var(--color-primary-dark); }

.btn--accent {
  background: var(--color-accent);
  color: var(--color-text-inverse);
}
.btn--accent:active { background: #EA580C; }

.btn--outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.btn--outline:active { background: var(--color-surface-2); }

.btn--ghost {
  background: var(--color-primary-soft);
  color: var(--color-primary);
}
.btn--ghost:active { background: var(--color-primary-bg); }

.btn--block { width: 100%; }
.btn--sm { height: 32px; padding: 0 var(--space-3); font-size: var(--font-size-sm); }
.btn--lg { height: 48px; font-size: var(--font-size-md); }

.btn--disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ============================================================
   Components — Tag / Badge
   ============================================================ */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 500;
  line-height: 1.6;
}

.tag--primary { background: var(--color-primary-soft); color: var(--color-primary); }
.tag--success { background: var(--color-success-soft); color: var(--color-success); }
.tag--warning { background: var(--color-warning-soft); color: #B45309; }
.tag--danger  { background: var(--color-danger-soft); color: var(--color-danger); }
.tag--gray    { background: var(--color-surface-2); color: var(--color-text-sub); }
.tag--accent  { background: var(--color-accent-soft); color: var(--color-accent); }

/* ============================================================
   Components — List Item
   ============================================================ */
.list-item {
  display: flex;
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border-light);
  gap: var(--space-3);
}

.list-item:last-child { border-bottom: none; }

.list-item__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--color-primary-soft);
  color: var(--color-primary);
}
.list-item__icon svg { width: 20px; height: 20px; }
.list-item__icon--accent { background: var(--color-accent-soft); color: var(--color-accent); }
.list-item__icon--success { background: var(--color-success-soft); color: var(--color-success); }
.list-item__icon--warning { background: var(--color-warning-soft); color: #B45309; }
.list-item__icon--gray { background: var(--color-surface-2); color: var(--color-text-sub); }

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

.list-item__title {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--color-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-item__subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-text-sub);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-item__right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.list-item__arrow {
  color: var(--color-text-muted);
}
.list-item__arrow svg { width: 16px; height: 16px; }

/* ============================================================
   Components — Input / Form
   ============================================================ */
.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.form-input {
  width: 100%;
  height: 44px;
  padding: 0 var(--space-3);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  color: var(--color-text);
  transition: border-color var(--duration-fast) var(--easing-default);
}

.form-input:focus {
  border-color: var(--color-primary);
  background: var(--color-surface);
}

.form-input::placeholder { color: var(--color-text-muted); }

.form-textarea {
  width: 100%;
  padding: var(--space-3);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  color: var(--color-text);
  resize: none;
  min-height: 100px;
  line-height: var(--line-height-relaxed);
}

.form-textarea:focus {
  border-color: var(--color-primary);
  background: var(--color-surface);
}

/* ============================================================
   Components — Tab / Segmented Control
   ============================================================ */
.tabs {
  display: flex;
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  padding: 3px;
  margin-bottom: var(--space-4);
}

.tab {
  flex: 1;
  padding: var(--space-2) var(--space-3);
  text-align: center;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-sub);
  border-radius: calc(var(--radius-md) - 2px);
  transition: all var(--duration-fast) var(--easing-default);
  cursor: pointer;
}

.tab.active {
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

/* Segmented control (top of page) */
.segmented {
  display: flex;
  gap: var(--space-6);
  padding: 0 var(--space-4);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border-light);
  overflow-x: auto;
  scrollbar-width: none;
}
.segmented::-webkit-scrollbar { display: none; }

.segmented__item {
  position: relative;
  padding: var(--space-3) 0;
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--color-text-sub);
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
}

.segmented__item.active {
  color: var(--color-text);
  font-weight: 600;
}

.segmented__item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}

/* ============================================================
   Components — Grid Icons (功能宫格)
   ============================================================ */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3) 0;
}

.icon-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  cursor: pointer;
}

.icon-grid__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}
.icon-grid__icon svg { width: 22px; height: 22px; stroke-width: 1.8; }

.icon-grid__label {
  font-size: var(--font-size-xs);
  color: var(--color-text);
  text-align: center;
}

/* ============================================================
   Components — Avatar
   ============================================================ */
.avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-weight: 600;
  flex-shrink: 0;
}

.avatar--sm { width: 32px; height: 32px; font-size: var(--font-size-xs); }
.avatar--lg { width: 56px; height: 56px; font-size: var(--font-size-md); }
.avatar--xl { width: 72px; height: 72px; font-size: var(--font-size-lg); }

.avatar--accent { background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent)); }
.avatar--success { background: linear-gradient(135deg, #34D399, var(--color-success)); }
.avatar--warning { background: linear-gradient(135deg, #FBBF24, var(--color-warning)); }

/* Avatar group */
.avatar-group { display: flex; }
.avatar-group .avatar {
  border: 2px solid var(--color-surface);
  margin-left: -8px;
}
.avatar-group .avatar:first-child { margin-left: 0; }

/* ============================================================
   Components — Switch
   ============================================================ */
.switch {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--duration-fast) var(--easing-default);
  flex-shrink: 0;
}

.switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-fast) var(--easing-default);
}

.switch.on {
  background: var(--color-primary);
}
.switch.on::after {
  transform: translateX(20px);
}

/* ============================================================
   Components — Divider
   ============================================================ */
.divider {
  height: 1px;
  background: var(--color-border-light);
  margin: var(--space-4) 0;
}

.divider--with-text {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
}
.divider--with-text::before,
.divider--with-text::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border-light);
}

/* ============================================================
   Components — Empty State
   ============================================================ */
.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-12) var(--space-6);
  color: var(--color-text-muted);
}

.empty__icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-3);
  opacity: 0.5;
}
.empty__icon svg { width: 100%; height: 100%; stroke-width: 1; }

.empty__text {
  font-size: var(--font-size-sm);
}

/* ============================================================
   Components — Toast
   ============================================================ */
.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: var(--space-3) var(--space-5);
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-fast) var(--easing-default);
}

.toast.show { opacity: 1; }

/* ============================================================
   Utility Classes
   ============================================================ */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-1 { flex: 1; min-width: 0; }
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }

.text-center { text-align: center; }
.text-right { text-align: right; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-md { font-size: var(--font-size-md); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-3xl { font-size: var(--font-size-3xl); }

.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.text-success { color: var(--color-success); }
.text-warning { color: var(--color-warning); }
.text-danger { color: var(--color-danger); }
.text-sub { color: var(--color-text-sub); }
.text-muted { color: var(--color-text-muted); }
.text-inverse { color: var(--color-text-inverse); }

.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Section header */
.section-title {
  font-size: var(--font-size-md);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.section-header__title {
  font-size: var(--font-size-md);
  font-weight: 600;
  color: var(--color-text);
}

.section-header__more {
  font-size: var(--font-size-sm);
  color: var(--color-text-sub);
  display: flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Status dot */
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.status-dot--success { background: var(--color-success); }
.status-dot--warning { background: var(--color-warning); }
.status-dot--danger { background: var(--color-danger); }
.status-dot--primary { background: var(--color-primary); }

/* Amount / Money */
.amount {
  font-weight: 600;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}
.amount--income { color: var(--color-success); }
.amount--expense { color: var(--color-danger); }
.amount--large { font-size: var(--font-size-2xl); font-weight: 700; }

/* ============================================================
   Page-specific — Hero / Banner
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-text-inverse);
  padding: var(--space-6) var(--space-4) var(--space-10);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  position: relative;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -30px;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.hero > * { position: relative; z-index: 1; }

.hero--accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
}

/* Quick action row on hero */
.hero-actions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.hero-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--color-text-inverse);
  cursor: pointer;
}

.hero-action__icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.hero-action__icon svg { width: 20px; height: 20px; }

.hero-action__label {
  font-size: var(--font-size-xs);
  opacity: 0.9;
}

/* Floating card over hero */
.hero-card {
  margin-top: calc(-1 * var(--space-6));
  position: relative;
  z-index: 2;
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn var(--duration-base) var(--easing-default);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.stagger > * {
  opacity: 0;
  animation: slideUp var(--duration-slow) var(--easing-default) forwards;
}

.stagger > *:nth-child(1) { animation-delay: 0.05s; }
.stagger > *:nth-child(2) { animation-delay: 0.1s; }
.stagger > *:nth-child(3) { animation-delay: 0.15s; }
.stagger > *:nth-child(4) { animation-delay: 0.2s; }
.stagger > *:nth-child(5) { animation-delay: 0.25s; }
.stagger > *:nth-child(6) { animation-delay: 0.3s; }
.stagger > *:nth-child(7) { animation-delay: 0.35s; }
.stagger > *:nth-child(8) { animation-delay: 0.4s; }
