:root {
  --bg: #000;
  --text: #ffffff;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

.stage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertical center */
  align-items: center;       /* horizontal center */
  text-align: center;
  gap: 22px;
  padding: 20px;
}

/* Circular "coin" container */
.coin-wrap {
  width: 220px;              /* controls logo size */
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;       /* white coin edge */
  box-shadow:
    0 20px 60px rgba(0,0,0,0.85),
    0 8px 20px rgba(0,0,0,0.6);

  opacity: 0;
  transform: translateY(8px) scale(0.995);
  animation:
    fadeIn 1.5s ease-out forwards,
    slowZoom 60s ease-out forwards;
  /* fadeIn starts immediately; slowZoom starts immediately but is subtle */
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slogan {
  margin: 0;
  max-width: 500px;
  font-size: 20px;
  letter-spacing: 0.03em;
  line-height: 1.4;

  opacity: 0;
  transform: translateY(6px);
  animation: sloganIn 1.6s ease-out forwards;
  animation-delay: 0.9s;
}

/* status line + faint text */
.status {
  margin-top: -6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: statusIn 1.8s ease-out forwards;
  animation-delay: 1.3s;
}

.status-line {
  width: min(420px, 76vw);
  height: 1px;
  background: rgba(255,255,255,0.12); /* barely perceptible */
}

.status-text {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.34); /* dark grey vibe on black */
  text-transform: lowercase;
}

.dot {
  display: inline-block;
  width: 0.6ch;
  animation: blink 1.6s steps(1, end) infinite;
}

/* bottom-right beta link */
.beta-link {
  position: fixed;
  right: 18px;
  bottom: 16px;

  font-size: 13px;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: rgba(255,255,255,0.38);
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);

  transition: transform 120ms ease, color 120ms ease, border-color 120ms ease;
}

.beta-link:hover {
  color: rgba(255,255,255,0.72);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}

.beta-link:active {
  transform: translateY(0);
}

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes slowZoom {
  from { transform: translateY(8px) scale(0.995); }
  to   { transform: translateY(0) scale(1.02); } /* subtle + stops at 60s */
}

@keyframes sloganIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes statusIn {
  to { opacity: 1; }
}

@keyframes blink {
  0%   { opacity: 0; }
  50%  { opacity: 0; }
  51%  { opacity: 1; }
  100% { opacity: 1; }
}