/* ---------------------------------------------------------
   Miklós Izsó — holding page
   Single-purpose page: one mark, centered, nothing else.
--------------------------------------------------------- */

:root {
  --bg: #ffffff;
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  background: var(--bg);
}

.stage {
  min-height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vh 6vw;
}

.mark {
  width: min(46vh, 62vw, 420px);
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;

  opacity: 0;
  transform: scale(0.96);
  animation: reveal 0.9s var(--ease-spring) 0.1s forwards;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mark {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 480px) {
  .mark {
    width: min(50vh, 74vw, 320px);
  }
}
