.page-intro .ios-screen {
  background: var(--screen-bg);
}

.intro-shell {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 54px 0 28px;
  box-sizing: border-box;
  background: var(--screen-bg);
}

.intro-skip {
  position: absolute;
  top: 58px;
  right: 16px;
  z-index: 5;
  padding: 8px 14px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-family: var(--font-family-base);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.intro-skip:active {
  opacity: 0.75;
}

.intro-viewport {
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.intro-track {
  display: flex;
  height: 100%;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.intro-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 28px 0;
  box-sizing: border-box;
  text-align: center;
}

.intro-illustration {
  width: min(72vw, 280px);
  aspect-ratio: 1;
  margin-bottom: 28px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 35%,
    rgba(217, 255, 0, 0.22) 0%,
    rgba(217, 255, 0, 0.06) 45%,
    rgba(26, 26, 26, 0.9) 100%
  );
  border: 1px solid rgba(217, 255, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.intro-illustration .sport-icon-img {
  width: 72px;
  height: 72px;
}

.intro-slide h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.intro-slide p {
  margin: 0;
  max-width: 300px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.intro-foot {
  flex-shrink: 0;
  padding: 16px 24px 8px;
}

.intro-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.intro-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.intro-dot.is-active {
  width: 24px;
  background: var(--brand);
}

.intro-foot .btn-primary-block {
  width: 100%;
}
