#splash {
  position: fixed; inset: 0; z-index: 2000;
  background: #06060a;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 900ms cubic-bezier(0.22,1,0.36,1);
}
#splash.hidden { opacity: 0; pointer-events: none; }
.splash-bg-pulse {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(65,105,225,0.12) 0%, transparent 70%);
  animation: splashPulse 4s ease-in-out infinite;
}
@keyframes splashPulse { 0%,100%{opacity:0.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.1)} }
.splash-content { text-align: center; position: relative; z-index: 1; }
.splash-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.25em; color: rgba(255,255,255,0.3);
  margin-bottom: 28px;
}
.splash-name {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-weight: 400; font-size: clamp(64px, 14vw, 180px);
  line-height: 0.9; letter-spacing: -0.03em;
  color: #fff; text-shadow: 0 0 80px rgba(65,105,225,0.6);
  margin: 0 0 24px;
}
.splash-name .dot-acc { color: #7b9bf2; }
.splash-role {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.4);
  margin-bottom: 56px;
}
.splash-enter {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.18em; color: #fff;
  background: var(--accent); border: none; cursor: pointer;
  padding: 16px 32px; border-radius: 100px;
  box-shadow: 0 0 40px rgba(65,105,225,0.5), 0 4px 24px rgba(0,0,0,0.4);
  transition: transform 220ms cubic-bezier(0.22,1,0.36,1), box-shadow 220ms;
  animation: splashBtnPulse 3s ease-in-out infinite;
}
.splash-enter:hover { transform: translateY(-3px); box-shadow: 0 0 60px rgba(65,105,225,0.7), 0 8px 32px rgba(0,0,0,0.4); }
@keyframes splashBtnPulse { 0%,100%{box-shadow:0 0 40px rgba(65,105,225,0.5),0 4px 24px rgba(0,0,0,0.4)} 50%{box-shadow:0 0 60px rgba(65,105,225,0.8),0 4px 24px rgba(0,0,0,0.4)} }
.splash-hint {
  margin-top: 20px; font-family: 'JetBrains Mono', monospace;
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.2);
}

#cinematic {
  position: fixed; inset: 0; z-index: 1500;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 600ms cubic-bezier(0.22,1,0.36,1);
}
#cinematic.active { opacity: 1; pointer-events: all; }
#cinematicVideo {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.cinematic-ui {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px var(--pad);
  display: flex; justify-content: space-between; align-items: flex-end;
  background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 100%);
  z-index: 1;
}
.cinematic-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.5);
}
.cinematic-skip {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.5);
  padding: 10px 18px; border-radius: 100px; cursor: pointer;
  transition: color 200ms, background 200ms; border: none;
  background: rgba(255,255,255,0.1);
}
.cinematic-skip:hover { color: #fff; background: rgba(255,255,255,0.18); }
