:root {
  --coming-primary: #24b5ea;
  --coming-text: #ffffff;
  --coming-muted: rgba(255, 255, 255, 0.78);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Plus Jakarta Sans", sans-serif;
}

body {
  color: var(--coming-text);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.coming-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0d1114;
}

.coming-bg,
.coming-overlay,
.coming-grain {
  position: absolute;
  inset: 0;
}

.coming-bg {
  background-image: url("https://images.unsplash.com/photo-1517760444937-f6397edcbbcd?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: blur(1px);
}

.coming-overlay {
  background:
    radial-gradient(circle at 50% 56%, rgba(243, 141, 58, 0.26), transparent 30%),
    linear-gradient(180deg, rgba(7, 15, 22, 0.5) 0%, rgba(7, 15, 22, 0.38) 28%, rgba(7, 15, 22, 0.72) 100%);
}

.coming-grain {
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 20% 20%, #fff 0 1px, transparent 1px),
    radial-gradient(circle at 70% 32%, #fff 0 1px, transparent 1px),
    radial-gradient(circle at 38% 68%, #fff 0 1px, transparent 1px),
    radial-gradient(circle at 88% 24%, #fff 0 1px, transparent 1px);
}

.coming-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 58px 48px 32px;
}

.coming-header {
  display: flex;
  justify-content: center;
}

.coming-logo-frame {
  width: 240px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.16);
}

.coming-content {
  margin: auto 0;
  text-align: center;
}

.coming-eyebrow {
  margin: 0 0 18px;
  color: var(--coming-primary);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.32em;
}

.coming-content h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.34);
}

.coming-copy {
  max-width: 920px;
  margin: 24px auto 0;
  color: var(--coming-muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.coming-cta-card {
  width: min(100%, 640px);
  margin: 44px auto 0;
  padding: 28px 28px 30px;
  border-radius: 22px;
  background: rgba(33, 31, 37, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.coming-cta-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  font-weight: 700;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.countdown-item {
  padding: 16px 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-item strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.countdown-item span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  font-weight: 600;
}

.coming-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
}

.coming-footer p {
  margin: 0;
}

.coming-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.coming-socials a {
  color: rgba(255, 255, 255, 0.7);
}

.coming-socials svg {
  width: 28px;
  height: 28px;
}

.coming-mail {
  justify-self: end;
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .coming-shell {
    padding: 42px 24px 26px;
  }

  .coming-logo-frame {
    width: 184px;
  }

  .coming-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .coming-mail {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .coming-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.24em;
  }

  .coming-cta-card {
    padding: 22px 18px 22px;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coming-socials {
    gap: 18px;
  }
}
