/**
 * Printique Designs — Coming Soon
 * Random background + slow Ken Burns + crossfade
 */
:root {
  --soon-ink: #ffffff;
  --soon-muted: rgba(255, 255, 255, 0.72);
  --soon-font: "Tajawal", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --soon-tracking: 0.28em;
  --soon-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --soon-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --soon-fade: 2.8s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  height: 100%;
}

body {
  font-family: var(--soon-font);
  color: var(--soon-ink);
  background: #111;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.soon {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.soon__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #111;
}

.soon__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity var(--soon-fade) var(--soon-ease);
  will-change: opacity, transform;
}

.soon__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.soon__slide.is-ken {
  animation: soonKen 28s var(--soon-ease) infinite alternate;
}

.soon__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.62) 100%),
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.soon__stage {
  position: relative;
  z-index: 3;
  width: min(92vw, 560px);
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.soon__brand {
  margin: 0 0 clamp(1.75rem, 5vw, 2.75rem);
}

.soon__logo {
  margin: 0 auto;
  width: min(52vw, 240px);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  animation: soonRise 1.1s var(--soon-ease-out) 0.15s forwards;
}

.soon__word {
  margin: 0;
  font-size: clamp(2.75rem, 9vw, 5.5rem);
  font-weight: 300;
  letter-spacing: var(--soon-tracking);
  text-transform: uppercase;
  line-height: 1;
  opacity: 0;
  transform: translateY(22px);
  animation: soonRise 1.15s var(--soon-ease-out) 0.45s forwards;
}

.soon__sub {
  margin: 0.85rem 0 0;
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--soon-muted);
  opacity: 0;
  transform: translateY(14px);
  animation: soonRise 1.1s var(--soon-ease-out) 0.75s forwards;
}

@keyframes soonRise {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes soonKen {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(-1.2%, 0.8%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .soon__slide,
  .soon__logo,
  .soon__word,
  .soon__sub {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .soon__slide:not(.is-active) {
    opacity: 0 !important;
  }
}

@media (max-width: 480px) {
  .soon__logo {
    width: min(58vw, 180px);
  }

  .soon__word {
    letter-spacing: 0.18em;
  }

  .soon__sub {
    letter-spacing: 0.22em;
  }
}
