.about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.stats-card { background: var(--gray-900); border: 1px solid rgba(212,175,55,0.2); padding: 2rem; }
.stat-row { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(212,175,55,0.2); padding: 0.75rem 0; }
.stat-row:last-child { border-bottom: none; }
.stat-label { color: var(--gray-400); font-size: 0.875rem; }
.stat-value { color: var(--gold); font-size: 0.875rem; }
