/* ============================================================
   FINANCE PAGE
   Inherits about.css for section structure (.about-hero, .about-section, etc).
   This file only adds the finance-specific stat blocks and ledger placeholder.
   ============================================================ */

/* Slightly different hero grid - smaller stats column instead of portrait */
.finance-hero-grid {
  grid-template-columns: 1.5fr 1fr;
}

@media (max-width: 880px) {
  .finance-hero-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HERO STAT BLOCKS
   ============================================================ */
.finance-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.finance-stat {
  background: rgba(168, 197, 232, 0.06);
  border: 1px solid rgba(168, 197, 232, 0.18);
  border-radius: 2px;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.finance-stat-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a8c5e8;
  opacity: 0.85;
}

.finance-stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.625rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.05;
  color: #fffce1;
  letter-spacing: -0.01em;
}

.finance-stat-note {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #fffce1;
  opacity: 0.65;
}

/* ============================================================
   LEDGER PLACEHOLDER
   The "PENDING" panel until the ledger actually goes live
   ============================================================ */
.finance-ledger-placeholder {
  margin-top: 2.5rem;
  background: rgba(168, 197, 232, 0.04);
  border: 1px dashed rgba(168, 197, 232, 0.3);
  border-radius: 2px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  max-width: 62ch;
}

.finance-ledger-stamp {
  display: inline-block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: #8a0a0a;
  border: 2.5px solid #8a0a0a;
  padding: 0.5rem 1.125rem;
  border-radius: 4px;
  transform: rotate(-4deg);
  margin-bottom: 1.25rem;
  background: rgba(253, 251, 246, 0.05);
}

.finance-ledger-placeholder p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #fffce1;
  opacity: 0.78;
  margin: 0;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 640px) {
  .finance-stat {
    padding: 1.25rem 1.25rem;
  }
  .finance-ledger-placeholder {
    padding: 1.75rem 1.25rem;
  }
}
