/**
 * Kleen.ai Premium Scorecard System
 * Nutrigo-inspired data visualization — rings, cards, gradients
 * Applied to: Product Scorecards, Dashboard, Water Quality, Baby Safety
 */

/* ============================================================
   SVG SCORE RING
   ============================================================ */
.score-ring-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.score-ring-svg {
  transform: rotate(-90deg);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.06));
}

.score-ring-bg {
  fill: none;
  stroke: var(--gray-100, #f0f0f0);
  stroke-width: 8;
}

.score-ring-fill {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.34, 1.56, 0.64, 1),
              stroke 0.4s ease;
}

.score-ring-fill.no-animate {
  transition: none;
}

/* Ring sizes */
.score-ring-xl .score-ring-svg { width: 180px; height: 180px; }
.score-ring-xl .score-ring-bg,
.score-ring-xl .score-ring-fill { stroke-width: 10; }

.score-ring-lg .score-ring-svg { width: 120px; height: 120px; }
.score-ring-lg .score-ring-bg,
.score-ring-lg .score-ring-fill { stroke-width: 8; }

.score-ring-md .score-ring-svg { width: 80px; height: 80px; }
.score-ring-md .score-ring-bg,
.score-ring-md .score-ring-fill { stroke-width: 7; }

.score-ring-sm .score-ring-svg { width: 56px; height: 56px; }
.score-ring-sm .score-ring-bg,
.score-ring-sm .score-ring-fill { stroke-width: 6; }

.score-ring-xs .score-ring-svg { width: 40px; height: 40px; }
.score-ring-xs .score-ring-bg,
.score-ring-xs .score-ring-fill { stroke-width: 5; }

/* Center label */
.score-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.score-ring-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.score-ring-xl .score-ring-value { font-size: 48px; }
.score-ring-lg .score-ring-value { font-size: 32px; }
.score-ring-md .score-ring-value { font-size: 22px; }
.score-ring-sm .score-ring-value { font-size: 16px; }
.score-ring-xs .score-ring-value { font-size: 13px; }

.score-ring-max {
  font-size: 12px;
  color: var(--text-dim, #737373);
  font-weight: 500;
  margin-top: 2px;
}

.score-ring-xl .score-ring-max { font-size: 14px; }
.score-ring-sm .score-ring-max,
.score-ring-xs .score-ring-max { display: none; }

/* ============================================================
   PREMIUM CARD SYSTEM
   ============================================================ */
.prem-card {
  background: var(--surface, #fff);
  border: 1px solid var(--border, rgba(0,0,0,0.07));
  border-radius: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.02);
  overflow: hidden;
  transition: box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.prem-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  transform: translateY(-2px);
}

.prem-card-body { padding: 24px; }
.prem-card-body-sm { padding: 16px; }
.prem-card-body-lg { padding: 32px; }

.prem-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border, rgba(0,0,0,0.07));
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prem-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text, #1a1a1a);
  display: flex;
  align-items: center;
  gap: 8px;
}

.prem-card-title-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* ============================================================
   HERO SCORE SECTION
   ============================================================ */
.score-hero {
  background: linear-gradient(135deg, var(--score-color-light, #f0fdf4) 0%, var(--score-color-lighter, #fafaf5) 100%);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.score-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--score-color-glow, rgba(22,163,74,0.08)) 0%, transparent 70%);
  pointer-events: none;
}

.score-hero-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.score-hero-band {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: white;
  width: fit-content;
}

.score-hero-explanation {
  font-size: 14px;
  color: var(--text-mid, #404040);
  max-width: 260px;
  line-height: 1.5;
}

/* ============================================================
   NUTRIENT / MACRO BREAKDOWN RINGS
   ============================================================ */
.macro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 16px;
}

.macro-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: var(--surface, #fff);
  border-radius: 16px;
  border: 1px solid var(--border, rgba(0,0,0,0.07));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.macro-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.macro-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim, #737373);
}

.macro-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text, #1a1a1a);
}

/* ============================================================
   PREMIUM HIGHLIGHTS (Positives / Concerns)
   ============================================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .highlights-grid { grid-template-columns: 1fr; }
}

.highlight-card {
  border-radius: 18px;
  padding: 20px;
  border: 1px solid;
}

.highlight-card-positive {
  background: linear-gradient(135deg, #f0fdf4, #fafaf5);
  border-color: var(--green-200, #bbf7d0);
}

.highlight-card-negative {
  background: linear-gradient(135deg, #fff1f2, #fafaf5);
  border-color: #fecaca;
}

.highlight-card-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.highlight-card-positive .highlight-card-title { color: var(--green-600, #16a34a); }
.highlight-card-negative .highlight-card-title { color: var(--red-500, #ef4444); }

.highlight-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-mid, #404040);
}

.highlight-item-row + .highlight-item-row {
  border-top: 1px solid rgba(0,0,0,0.04);
}

.highlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.highlight-card-positive .highlight-dot { background: var(--green-500, #22c55e); }
.highlight-card-negative .highlight-dot { background: var(--red-400, #f87171); }

/* ============================================================
   INGREDIENT BREAKDOWN LIST
   ============================================================ */
.ingredient-grid {
  display: grid;
  gap: 8px;
}

.ingredient-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface, #fff);
  border-radius: 14px;
  border: 1px solid var(--border, rgba(0,0,0,0.07));
  transition: background 0.15s, transform 0.15s;
}

.ingredient-row:hover {
  background: var(--bg, #fafaf5);
  transform: translateX(3px);
}

.ingredient-indicator {
  width: 6px;
  height: 32px;
  border-radius: 3px;
  flex-shrink: 0;
}

.ingredient-indicator-safe { background: var(--green-500, #22c55e); }
.ingredient-indicator-neutral { background: var(--gray-300, #a3a3a3); }
.ingredient-indicator-caution { background: var(--amber-500, #f59e0b); }
.ingredient-indicator-danger { background: var(--red-500, #ef4444); }

.ingredient-text {
  flex: 1;
  min-width: 0;
}

.ingredient-name-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text, #1a1a1a);
  text-transform: capitalize;
}

.ingredient-note-text {
  font-size: 12px;
  color: var(--text-dim, #737373);
  margin-top: 2px;
}

.ingredient-status-badge {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.ingredient-status-safe { background: var(--green-100, #dcfce7); color: var(--green-700, #15803d); }
.ingredient-status-neutral { background: var(--gray-100, #f0f0f0); color: var(--gray-600, #404040); }
.ingredient-status-caution { background: var(--amber-100, #fef3c7); color: #92400e; }
.ingredient-status-danger { background: var(--red-100, #fee2e2); color: var(--red-600, #dc2626); }

/* ============================================================
   ALTERNATIVE PRODUCT CARDS
   ============================================================ */
.alt-grid {
  display: grid;
  gap: 12px;
}

.alt-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface, #fff);
  border: 1px solid var(--border, rgba(0,0,0,0.07));
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.alt-card:hover {
  border-color: var(--green-400, #4ade80);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.10);
  transform: translateX(4px);
}

.alt-card-info { flex: 1; min-width: 0; }

.alt-card-brand {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim, #737373);
}

.alt-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text, #1a1a1a);
  margin-top: 2px;
}

.alt-card-arrow {
  color: var(--text-dim, #737373);
  font-size: 18px;
  transition: transform 0.2s;
}

.alt-card:hover .alt-card-arrow {
  transform: translateX(4px);
  color: var(--green-500, #22c55e);
}

/* ============================================================
   PERSONALIZED SCORE CARD
   ============================================================ */
.personal-score-card {
  border-radius: 20px;
  padding: 24px;
  border: 1px solid;
  position: relative;
  overflow: hidden;
}

.personal-score-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, currentColor 0%, transparent 70%);
  opacity: 0.04;
  pointer-events: none;
}

.personal-score-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.personal-score-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.personal-score-delta {
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 100px;
}

.personal-score-delta-positive {
  background: var(--green-100, #dcfce7);
  color: var(--green-700, #15803d);
}

.personal-score-delta-negative {
  background: var(--red-100, #fee2e2);
  color: var(--red-600, #dc2626);
}

.goal-insight-card {
  background: var(--surface, #fff);
  border: 1px solid var(--border, rgba(0,0,0,0.07));
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 10px;
}

.goal-insight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.goal-insight-name {
  font-size: 13px;
  font-weight: 700;
}

.goal-insight-adjustment {
  font-size: 12px;
  font-weight: 700;
}

.goal-insight-match {
  font-size: 12px;
  color: var(--text-dim, #737373);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 0;
}

/* ============================================================
   PREMIUM STAT CARDS (Dashboard)
   ============================================================ */
.stat-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.stat-card-premium {
  background: var(--surface, #fff);
  border: 1px solid var(--border, rgba(0,0,0,0.07));
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.stat-card-premium-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-card-premium-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim, #737373);
}

/* ============================================================
   CONTAMINANT DATA BARS (Water Quality)
   ============================================================ */
.contaminant-premium-card {
  background: var(--surface, #fff);
  border: 1px solid var(--border, rgba(0,0,0,0.07));
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.contaminant-premium-card:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contaminant-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contaminant-icon-safe { background: var(--green-100, #dcfce7); }
.contaminant-icon-warning { background: var(--amber-100, #fef3c7); }
.contaminant-icon-danger { background: var(--red-100, #fee2e2); }

.contaminant-details { flex: 1; min-width: 0; }

.contaminant-name-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--text, #1a1a1a);
  margin-bottom: 6px;
}

.contaminant-bar-track {
  height: 8px;
  background: var(--gray-100, #f0f0f0);
  border-radius: 4px;
  overflow: hidden;
}

.contaminant-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.contaminant-bar-fill-safe { background: linear-gradient(90deg, #22c55e, #4ade80); }
.contaminant-bar-fill-warning { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.contaminant-bar-fill-danger { background: linear-gradient(90deg, #ef4444, #f87171); }

.contaminant-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-dim, #737373);
}

.contaminant-exceed-badge {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  background: var(--red-100, #fee2e2);
  color: var(--red-600, #dc2626);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0 20px;
}

.section-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border, rgba(0,0,0,0.07));
}

.section-divider-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text, #1a1a1a);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* ============================================================
   PRODUCT HEADER (Premium)
   ============================================================ */
.product-header-premium {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.product-image-premium {
  width: 100px;
  height: 100px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green-50, #f0fdf4), var(--bg, #fafaf5));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--border, rgba(0,0,0,0.07));
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.product-image-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-meta-premium {
  flex: 1;
  min-width: 0;
}

.product-brand-premium {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim, #737373);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-brand-logo-premium {
  height: 18px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
}

.product-name-premium {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--text, #1a1a1a);
}

.product-pills-premium {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  background: var(--bg, #fafaf5);
  color: var(--text-mid, #404040);
  border: 1px solid var(--border, rgba(0,0,0,0.07));
}

.product-pill-cert {
  background: var(--green-50, #f0fdf4);
  color: var(--green-700, #15803d);
  border-color: var(--green-200, #bbf7d0);
}

/* ============================================================
   ACTION BAR (Premium)
   ============================================================ */
.action-bar-premium {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.action-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border, rgba(0,0,0,0.07));
  background: var(--surface, #fff);
  color: var(--text-mid, #404040);
  font-family: 'Inter', -apple-system, sans-serif;
  transition: all 0.15s ease;
  text-decoration: none;
}

.action-chip:hover {
  border-color: var(--green-400, #4ade80);
  color: var(--green-600, #16a34a);
  background: var(--green-50, #f0fdf4);
}

.action-chip-primary {
  background: var(--green-600, #16a34a);
  color: white;
  border-color: var(--green-600, #16a34a);
}

.action-chip-primary:hover {
  background: var(--green-700, #15803d);
  color: white;
}

.action-chip-dark {
  background: #000;
  color: white;
  border-color: #000;
}

.action-chip-dark:hover {
  background: #222;
  color: white;
}

.action-chip.active {
  background: var(--green-600, #16a34a);
  color: white;
  border-color: var(--green-600, #16a34a);
}

/* ============================================================
   DASHBOARD HEALTH RING
   ============================================================ */
.health-ring-card {
  background: linear-gradient(135deg, var(--green-600, #16a34a), #22c55e);
  border-radius: 24px;
  padding: 32px;
  color: white;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: 0 8px 32px rgba(22, 163, 74, 0.25);
  position: relative;
  overflow: hidden;
}

.health-ring-card::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.health-ring-card .score-ring-bg { stroke: rgba(255,255,255,0.2); }
.health-ring-card .score-ring-fill { stroke: white; }
.health-ring-card .score-ring-value { color: white; }
.health-ring-card .score-ring-max { color: rgba(255,255,255,0.7); }

.health-ring-info {
  flex: 1;
}

.health-ring-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  margin-bottom: 4px;
}

.health-ring-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.health-ring-sub {
  font-size: 13px;
  opacity: 0.8;
}

/* ============================================================
   TREND CHART (Premium)
   ============================================================ */
.chart-card-premium {
  background: var(--surface, #fff);
  border: 1px solid var(--border, rgba(0,0,0,0.07));
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.chart-header-premium {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.chart-title-premium {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.chart-period-premium {
  font-size: 12px;
  color: var(--text-dim, #737373);
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 8px;
  background: var(--bg, #fafaf5);
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 768px) {
  .score-hero {
    flex-direction: column;
    padding: 28px 20px;
    gap: 20px;
    text-align: center;
  }

  .score-hero-info {
    align-items: center;
  }

  .product-header-premium {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-pills-premium {
    justify-content: center;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .macro-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .health-ring-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .stat-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .macro-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .action-bar-premium {
    gap: 6px;
  }

  .action-chip {
    padding: 7px 12px;
    font-size: 12px;
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes ringFill {
  from { stroke-dashoffset: var(--ring-circumference); }
  to { stroke-dashoffset: var(--ring-target); }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-delay-1 { animation-delay: 100ms; }
.animate-delay-2 { animation-delay: 200ms; }
.animate-delay-3 { animation-delay: 300ms; }
.animate-delay-4 { animation-delay: 400ms; }
