html, body {
  overflow-x: clip;
}

main {
  overflow: clip !important;
}

.scroll-video-section {
  position: relative;
  width: 100%;
}

.scroll-video-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  pointer-events: none;
}

.scroll-video-sticky canvas {
  width: 100vw;
  height: auto;
  display: block;
}

.scroll-video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 1);
  z-index: 1;
  pointer-events: auto;
}

.scroll-video-overlay .hero-b {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

.scroll-video-overlay .hero-b h1 {
  -webkit-text-stroke: 0;
  paint-order: normal;
  text-shadow: none;
}

.scroll-hint-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  overflow: hidden;
  background: linear-gradient(90deg, #ffe8a0 0%, #fff3cc 50%, #ffe8a0 100%);
  padding: 10px 0;
  z-index: 3;
  pointer-events: none;
}

.scroll-hint-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: scrollHintMarquee 20s linear infinite;
  width: max-content;
}

.scroll-hint-track span {
  font-family: var(--font-red-hat-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #1d1d1b;
}

.scroll-hint-track svg {
  flex-shrink: 0;
  color: #1d1d1b;
}

@keyframes scrollHintMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.scroll-video-section ~ * {
  position: relative;
  z-index: 2;
  background: #fff !important;
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
}

.stats-scroll-section {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: 300vh;
  z-index: 2;
  background: #fff !important;
  box-sizing: border-box;
  overflow: visible;
}

.stats-scroll-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  overflow: hidden;
}

.stats-scroll-sticky .stat-highlight {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.stats-scroll-sticky .stat-highlight-number {
  display: block;
  font-family: var(--font-red-hat-display);
  font-size: 160px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: var(--text-color);
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stats-scroll-sticky .stat-highlight-label {
  display: block;
  font-family: var(--font-barlow);
  font-size: 22px;
  font-weight: 400;
  color: #666;
  margin-top: 12px;
}

.stat-highlight {
  position: relative;
}

.stat-text-ripple {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(1);
  font-family: var(--font-red-hat-display);
  font-size: 160px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-primary);
  pointer-events: none;
  animation: textRippleExpand 0.7s ease-out forwards;
}

@keyframes textRippleExpand {
  0% { transform: translateX(-50%) scale(1); opacity: 0.7; -webkit-text-stroke-width: 2px; }
  100% { transform: translateX(-50%) scale(2.5); opacity: 0; -webkit-text-stroke-width: 1px; }
}

@media (max-width: 768px) {
  .stat-text-ripple { font-size: 100px; }
}
@media (max-width: 480px) {
  .stat-text-ripple { font-size: 72px; }
}

.stats-scroll-sticky .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 90%;
  max-width: 900px;
}

.stats-scroll-sticky .stat-card {
  background: transparent;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 1;
  transform: none;
}

.stats-scroll-sticky .stat-number {
  font-family: var(--font-red-hat-display);
  font-size: 40px;
  font-weight: 900;
  font-style: italic;
  color: var(--text-color);
  line-height: 1;
}

.stats-scroll-sticky .stat-label {
  font-family: var(--font-barlow);
  font-size: 15px;
  font-weight: 400;
  color: #666;
}

@media (max-width: 768px) {
  .stats-scroll-sticky .stat-highlight-number {
    font-size: 100px;
  }
  .stats-scroll-sticky .stat-highlight-label {
    font-size: 17px;
  }
  .stats-scroll-sticky .stats-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
  .stats-scroll-sticky .stat-number {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .stats-scroll-sticky .stat-highlight-number {
    font-size: 72px;
  }
}

.stats-scroll-section {
  margin-top: 40px;
}

.marketplace-frame {
  height: 520px;
  box-shadow: none;
}

.faq {
  max-width: 900px;
}
