#boot {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--term-bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.6rem;
  cursor: pointer;
}

.boot-logo {
  position: relative;
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -.02em;
}

.boot-logo .cursor {
  position: absolute;
  right: -.62em;
  color: var(--pink);
  animation: blink 1.1s steps(1) infinite;
}

.boot-bar {
  width: min(320px, 60vw); height: 6px;
  background: var(--surface2); border-radius: 3px; overflow: hidden;
}

.boot-fill {
  width: 100%; height: 100%;
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--pink));
  animation: bootfill 2s linear forwards;
}

@keyframes bootfill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.boot-log {
  min-height: 3.4em;
  color: var(--dim); font-size: .85rem; text-align: center;
  max-width: min(560px, 90vw);
  white-space: pre-wrap;
  display: flex; flex-direction: column; gap: .15em;
}

.boot-line { opacity: 0; animation: bootline .25s ease forwards; }

@keyframes bootline { to { opacity: 1; } }

.boot-hint { color: var(--muted); font-size: .8rem; animation: blink 1.2s steps(1) infinite; }

@keyframes blink { 50% { opacity: 0; } }
