/* ============================================
   LANDING — Light Mode Boot Sequence
   ============================================ */

.boot-screen {
  position: fixed;
  inset: 0;
  background-color: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-curtain);
  will-change: transform;
}

.boot-screen.curtain-up {
  transform: translateY(-100%);
}

.boot-content {
  max-width: 800px;
  width: 90%;
}

.typewriter-container {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.type-line {
  min-height: 3rem;
  letter-spacing: -0.02em;
}

.type-cursor {
  display: inline-block;
  width: 14px;
  height: 2.5rem;
  background-color: var(--accent-green);
  animation: blink 1s step-end infinite;
  vertical-align: middle;
  margin-left: 8px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (max-width: 768px) {
  .typewriter-container {
    font-size: 1.5rem;
  }
  .type-line {
    min-height: 2rem;
  }
  .type-cursor {
    height: 1.5rem;
    width: 8px;
  }
}
