:root {
  --bg: #ffffff;
  --text: #111827;
  --brand: #6366f1;
  --brand-light: #e0e7ff;
  --gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  --font-display: 'Oswald', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
}

.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--brand-light);
  padding: 2rem;
}

h1.gradient-text {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

p.subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  color: #4b5563;
  margin-bottom: 2rem;
}

.finance-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  border: 1px solid #f3f4f6;
}

.mt-1 {
  margin-top: 1rem;
}

.performers-list {
  text-align: left;
  list-style-type: circle;
  padding-left: 1.5rem;
  color: #4b5563;
}

.stat-label {
  font-weight: 600;
  text-transform: uppercase;
  color: #6b7280;
  font-size: 0.85rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: #111827;
  margin: 0.5rem 0;
}
