html,body{height:100%}
body{margin:0;font-family:'Poppins',sans-serif}
.splash-wrap{display:flex;align-items:center;justify-content:center;height:100vh;background:#ceea45;animation:splashIn .5s ease-out both}
.splash-inner{text-align:center;padding:0 24px;max-width:420px;width:100%}
.splash-power{font-size:clamp(12px,3.5vw,14px);letter-spacing:.08em;font-weight:400}
.splash-title{font-size:clamp(24px,6vw,32px);font-weight:700;margin-top:8px;line-height:1.2}
.splash-wrap.fade-out{animation:splashOut .4s ease-in forwards}
@keyframes splashIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}
@keyframes splashOut{from{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(-8px)}}
