.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

/* Fullscreen video */
.video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Enter prompt */
.prompt {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.prompt.visible {
  opacity: 1;
}

.prompt span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(140, 145, 155, 0.5);
  transition: color 1s ease-out;
}

/* Brighter when video is done */
.prompt.ready span {
  color: rgba(180, 185, 195, 0.6);
}

.intro:hover .prompt span {
  color: rgba(220, 225, 235, 0.9);
}

/* Static intro for mobile */
.staticIntro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  animation: fadeIn 1.5s ease-out;
}

.staticLogo {
  position: relative;
}

.primeText {
  font-family: var(--font-display);
  font-size: clamp(60px, 18vw, 140px);
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(
    180deg,
    #e8eaed 0%,
    #d4c4b0 35%,
    #c9a882 60%,
    #8a7060 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.staticTagline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(180, 185, 195, 0.5);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .prompt {
    bottom: 40px;
  }

  .staticTagline {
    font-size: 10px;
    letter-spacing: 0.25em;
    padding: 0 20px;
    text-align: center;
  }
}
