.developer {
  padding: var(--section-padding-y) 0;
  background-color: var(--bg-dark);
}

.developer__grid {
  align-items: stretch;
}

.developer__intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  min-height: 480px;
}

.developer__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.developer__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.developer__stat-num {
  font-family: var(--font-heading);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 600;
  line-height: 0.9;
  color: var(--accent);
}

.developer__stat-label {
  font-family: var(--font-body);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: var(--font-body-weight);
  line-height: 1.15;
  color: var(--text-primary);
}

.developer__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
  min-height: 480px;
}

.developer__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
}

.developer__card-value {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--accent);
}

.developer__card-value--sm {
  font-size: clamp(20px, 2vw, 28px);
}

.developer__card-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: var(--font-body-weight);
  line-height: 1.4;
  color: var(--text-primary);
}
