@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}

.funnel-container {
  width: 100%;
  max-width: var(--container-max);
  min-height: 100vh;
  padding: var(--container-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step {
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: clamp(4px, 1vh, 8px);
  padding-bottom: clamp(24px, 5vh, 40px);
  animation: fadeIn 0.4s ease;
}

.step.active {
  display: flex;
}

.step-title {
  font-size: clamp(22px, 5.5vw, 28px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: 32px;
  max-width: 400px;
}

.step-subtitle {
  font-size: clamp(14px, 3.5vw, 16px);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 380px;
}

.highlight-number {
  font-size: clamp(40px, 10vw, 56px);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: 8px;
}

.highlight-label {
  font-size: clamp(15px, 4vw, 18px);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.highlight-sub {
  font-size: clamp(13px, 3.2vw, 15px);
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 48px;
  max-width: 360px;
}
