#splash {
  background: var(--white);
  justify-content: flex-start;
  padding: var(--splash-top-pad) 0 0;
  cursor: pointer;
  overflow: hidden;
}

#splash-brand {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: env(safe-area-inset-top, 0);
  padding-inline: var(--screen-edge-x);
}

#splash-title {
  font-family: var(--condensed-font);
  color: var(--black);
  font-weight: 700;
  text-align: center;
  line-height: 0.88;
  letter-spacing: -0.05em;
  font-size: clamp(80px, 22vw, 180px);
  display: flex;
  flex-direction: column;
  gap: 0.02em;
  margin: 0;
}

/* ── Kiosk 1080×1920 ── */
@media (orientation: portrait) and (min-width: 1000px) and (min-height: 1700px) {
  #splash-title {
    font-size: 248.34px;
    letter-spacing: -0.05em;
  }
}

#splash-title span {
  display: block;
}

#splash-art {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 0;
  margin-top: clamp(8px, 2vh, 24px);
  overflow: hidden;
}

#splash-illustration {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  display: block;
}

/* ── Static button (no press animation) ─────────────────── */
#splash-btn-fill {
  fill: #EEFF41;
}

#splash-btn-glow {
  display: none;
}

/* Gentle breathing on the whole illustration */
#splash-illustration {
  animation: splash-breathe 3.6s ease-in-out infinite;
  transform-origin: 50% 100%;
  will-change: transform;
}

@keyframes splash-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.015); }
}

/* yellow radial wipe — expands from the button on press, then fades */
#yellow-wipe {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
  opacity: 0;
}

#yellow-wipe::before {
  content: '';
  position: absolute;
  left: var(--wipe-x, 50%);
  top: var(--wipe-y, 50%);
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  background: #EEFF41;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 480ms cubic-bezier(0.55, 0.0, 0.25, 1);
}

#yellow-wipe.expand {
  opacity: 1;
}

#yellow-wipe.expand::before {
  transform: scale(300);
}

#yellow-wipe.fade-out {
  transition: opacity 260ms ease-out;
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  #splash-illustration {
    animation: none;
  }
}
