.stats-container {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.stats-inner {
  max-width: 860px;
  width: 100%;
}

.stats-header {
  text-align: center;
}

.stats-header .eyebrow {
  margin-bottom: 8px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 36px;
  text-align: left;
}

.stat-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.stat-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.stat-label {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.stat-number {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.graph-section {
  margin-top: 40px;
}

.graph-header {
  margin-bottom: 20px;
}

.graph-header h2 {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}

.graph-container {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 28px 20px;
}

.graph-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  height: 220px;
  max-width: 560px;
  margin: 0 auto;
  user-select: none;
  -webkit-user-select: none;
}

.graph-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 0 6px;
}

.graph-bar-value {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.graph-bar {
  width: 100%;
  max-width: 48px;
  background: linear-gradient(to top, #2d3a52, #5a7099);
  border-radius: 4px 4px 0 0;
  transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.graph-bar-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}
