/* app3 — coming soon */

:root {
  color-scheme: dark;
  --bg-0: #0e1013;
  --bg-1: #15181d;
  --bg-2: #1c2026;
  --line: rgba(255, 255, 255, 0.055);
  --line-soft: rgba(255, 255, 255, 0.026);
  --text: #c7cbd2;
  --text-glow: rgba(135, 173, 255, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  background: var(--bg-0);
  color: var(--text);
  font-family:
    "Avenir Next",
    "Segoe UI",
    Inter,
    Helvetica,
    Arial,
    sans-serif;
  overflow: hidden;
}

.coming-soon {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;

  /*
    Warstwowy, szary deseń:
    - delikatna diagonalna tkanina
    - subtelna kratka
    - miękkie rozświetlenie w centrum
  */
  background: #ccc;

  background-size:
    auto,
    auto,
    52px 52px,
    52px 52px,
    auto;
}

.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: #ccc;
  transform: translateX(-45%);
  opacity: .55;
}

.coming-soon::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  box-shadow:
    inset 0 0 180px rgba(0,0,0,.58),
    inset 0 0 36px rgba(255,255,255,.018);
}

.hero {
  position: relative;
  width: min(86vw, 1120px);
  padding: clamp(30px, 6vw, 78px) clamp(22px, 5vw, 64px);
  text-align: center;
  transform: translateY(-1.5vh);
}

.logo-wrap {
  position: relative;
  margin-inline: auto;
}

.logo-wrap::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 35%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(26, 93, 255, .10);
  filter: blur(48px);
  transform: translateY(-50%);
}

.logo {
  display: block;
  width: 100%;
  max-width: 980px;
  height: auto;
  margin-inline: auto;
  filter:
    drop-shadow(0 22px 36px rgba(0,0,0,.28))
    drop-shadow(0 0 22px rgba(15,78,255,.08));
  user-select: none;
  -webkit-user-drag: none;
}

.soon {
  margin: clamp(124px, 4.2vw, 52px) 0 0;
  color: #07244a;
  cursor: default !important;
  font-family:
    "Avenir Next",
    "Segoe UI",
    Inter,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.035em;
  text-shadow:
    0 1px 0 rgba(255,255,255,.03),
    0 0 24px var(--text-glow);
}

.soon::after {
  content: "";
  display: block;
  width: clamp(48px, 6vw, 78px);
  height: 1px;
  margin: clamp(16px, 2vw, 24px) auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(148, 177, 230, .52),
    transparent
  );
}

.ambient {
  position: absolute;
  z-index: -3;
  width: 42vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .13;
  pointer-events: none;
}

.ambient--one {
  top: -24vw;
  right: -12vw;
  background: #aaa;
}

.ambient--two {
  bottom: -30vw;
  left: -16vw;
  background: #aaa;
}

@keyframes sheen {
  0%, 18% {
    transform: translateX(-55%);
    opacity: 0;
  }
  38% {
    opacity: .42;
  }
  62% {
    transform: translateX(55%);
    opacity: .16;
  }
  100% {
    transform: translateX(55%);
    opacity: 0;
  }
}

@media (max-width: 720px) {
  .hero {
    width: min(92vw, 620px);
    padding-inline: 12px;
  }

  .logo {
    width: 100%;
  }
  .soon {
    font-size: 0.8rem;
  }
}

@media (max-width: 420px) {
  .hero {
    width: 94vw;
  }
  .soon {
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon::before {
    animation: none;
  }
}
