/* =====================================================
   ZETA FUTURE — Placeholder page: just a giant "SOON"
   ===================================================== */

.soon-page {
  position: relative;
  background: var(--zink);
  color: #fff;
  overflow: hidden;
  min-height: calc(100vh - 80px);
  padding-top: 80px;
  display: grid;
  place-items: center;
}
@media (min-width: 768px) {
  .soon-page { padding-top: 92px; min-height: calc(100vh - 92px); }
}

/* Giant decorative Z behind */
.soon-page::before {
  content: "Z";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Anton', sans-serif;
  font-size: 80vw;
  line-height: 0.8;
  color: rgba(227, 6, 19, 0.05);
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 1200px) {
  .soon-page::before { font-size: 880px; }
}

/* The "SOON" word */
.soon {
  position: relative;
  z-index: 1;
  font-family: 'Anton', sans-serif;
  font-size: clamp(96px, 28vw, 380px);
  line-height: 0.85;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  text-align: center;
  user-select: none;
}
.soon .dot { color: var(--zred); }
