:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #050505;
  color: #f5f5f5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #050505;
}

section {
  min-height: 100vh;
}

.intro,
.outro {
  display: grid;
  place-items: center;
  padding: 48px 24px;
}

.intro__content,
.outro > div {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: #a6ff4d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(40px, 8vw, 88px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 5vw, 64px);
  line-height: 1;
}

p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.scroll-scene {
  height: 360vh;
  min-height: 2400px;
  background: #000;
}

.sticky-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

canvas,
video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

canvas {
  object-fit: cover;
}

video {
  opacity: 0;
  pointer-events: none;
}

.progress {
  position: absolute;
  left: clamp(24px, 8vw, 110px);
  right: clamp(24px, 8vw, 110px);
  bottom: 28px;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: #a6ff4d;
}

@media (max-width: 720px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  p {
    font-size: 16px;
  }

  .scroll-scene {
    height: 300vh;
    min-height: 1900px;
  }
}
