:root {
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.76);
  --accent: #d7ad63;
  --surface: rgba(8, 15, 24, 0.34);
}

* {
  box-sizing: border-box;
}

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

body {
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background: #111827;
}

.coming-soon {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 40px 24px 88px;
  background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=2200&q=88");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.coming-soon__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(3, 8, 15, 0.92) 0%, rgba(7, 15, 25, 0.74) 48%, rgba(8, 15, 24, 0.52) 100%),
    linear-gradient(to top, rgba(3, 7, 13, 0.64), transparent 55%);
}

.coming-soon__grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
}

.coming-soon__content {
  width: min(760px, 100%);
  padding: clamp(34px, 6vw, 64px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.coming-soon__logo {
  display: block;
  width: min(320px, 76vw);
  height: auto;
  max-height: 170px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25));
}

.coming-soon__divider {
  width: 72px;
  height: 2px;
  margin: 30px auto 28px;
  background: var(--accent);
}

.coming-soon__eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 8vw, 6.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-transform: uppercase;
}

.coming-soon__message {
  max-width: 520px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.coming-soon__footer {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  text-align: center;
}

@media (max-width: 640px) {
  .coming-soon {
    padding: 24px 16px 72px;
  }

  .coming-soon__content {
    padding: 36px 20px;
  }

  .coming-soon__grid {
    background-size: 48px 48px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .coming-soon__content {
    animation: reveal 700ms ease-out both;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
