body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg);
}

p {
  text-wrap: pretty;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  text-wrap: balance;
}

.hero__title {
  font-size: clamp(56px, 9vw, 96px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.hero__title em {
  font-style: italic;
  color: var(--color-accent);
  text-shadow: 0 0 80px rgba(245, 197, 24, 0.45), 0 0 160px rgba(245, 197, 24, 0.2);
}

.section-title {
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 64px;
}
.section-title em {
  font-style: italic;
  color: var(--color-accent);
  text-shadow: 0 0 48px rgba(245, 197, 24, 0.35);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.9;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
  vertical-align: middle;
  margin-top: -1px;
}

.hero__stat-num {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -0.02em;
}
