body,
html {
  margin: 0;
  padding: 0;
  background-color: #06050e;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  overflow-x: hidden;
}

.progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

.progress-bar {
  width: 100%;
  height: 100%;
  background: #b9f8cf;
  box-shadow: 0 0 10px rgba(185, 248, 207, 0.5);
  transform-origin: 0% 50%;
  transform: scaleX(0);
  will-change: transform;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem 0;
}

p {
  font-size: 1.2rem;
  color: #888;
  max-width: 600px;
  line-height: 1.6;
}

/* 이미지 리빌 섹션 */
.reveal-section {
  min-height: 120vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 15vh;
}

.text-block {
  width: 90vw;
  max-width: 1200px;
  text-align: left;
  margin-bottom: 2rem;
}

.text-block h2 {
  font-size: 2.5rem;
  margin: 0 0 0.5rem 0;
}

.reveal-wrap {
  max-width: 90vw;
  overflow: hidden;
  clip-path: inset(0 40% 0 40%);
  will-change: clip-path;
  margin: 0 auto;
}

.reveal-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 85vh;

  transform: scale(1.3) translateY(-10%);
  will-change: transform;
}
