.coming-soon-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 8%, rgba(216, 176, 125, 0.18), transparent 30%),
    radial-gradient(circle at 16% 78%, rgba(82, 134, 146, 0.18), transparent 34%),
    #020807;
}

.coming-soon-shell {
  min-height: 100vh;
}

.coming-hero {
  position: relative;
  display: grid;
  min-height: 720px;
  overflow: hidden;
}

.coming-art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 5, 6, 0.97), rgba(2, 5, 6, 0.74) 36%, rgba(2, 5, 6, 0.26) 70%, rgba(2, 5, 6, 0.84)),
    linear-gradient(180deg, rgba(2, 5, 6, 0.08), rgba(2, 5, 6, 0.86)),
    url("assets/quiet-pawse-hero.png");
  background-size: cover;
  background-position: 62% 46%;
  transform: scale(1.01);
}

.coming-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(22px, 5vw, 70px);
}

.coming-nav .brand img {
  width: 188px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(2, 6, 7, 0.46);
  color: rgba(246, 242, 234, 0.82);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.coming-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(720px, calc(100vw - 44px));
  padding: 132px 0 80px clamp(22px, 5vw, 70px);
}

.coming-copy h1 {
  max-width: 660px;
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(62px, 9vw, 124px);
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
}

.coming-subtitle {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(246, 242, 234, 0.78);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.spark-line {
  max-width: 520px;
  margin: 22px 0 0;
  color: #f3d7ad;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.18;
}

.check-soon {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 28px 0 0;
  padding: 0 14px;
  border: 1px solid rgba(243, 215, 173, 0.34);
  border-radius: 999px;
  background: rgba(2, 6, 7, 0.58);
  color: rgba(246, 242, 234, 0.9);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.apps-preview-section {
  padding: 34px clamp(18px, 4vw, 54px) 54px;
  background:
    linear-gradient(180deg, rgba(2, 8, 9, 0.96), rgba(1, 7, 8, 0.98)),
    radial-gradient(circle at 72% 0%, rgba(243, 215, 173, 0.12), transparent 30%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.coming-app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.coming-app-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(5, 10, 12, 0.86);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.coming-app-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%);
  pointer-events: none;
}

.coming-app-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 78px;
  height: 78px;
  border-radius: 17px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
}

.coming-app-screen {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background-image: var(--screen);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -40px 54px rgba(0, 0, 0, 0.34);
}

@media (max-width: 980px) {
  .coming-hero {
    min-height: 760px;
  }

  .coming-art {
    background:
      linear-gradient(180deg, rgba(2, 5, 6, 0.42), rgba(2, 5, 6, 0.82) 50%, rgba(2, 5, 6, 0.98)),
      url("assets/quiet-pawse-hero.png");
    background-size: cover;
    background-position: 60% 38%;
  }

  .coming-copy {
    align-self: end;
    padding-right: 22px;
  }
}

@media (max-width: 760px) {
  .coming-app-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .coming-nav {
    padding: 18px;
  }

  .coming-nav .brand img {
    width: 148px;
  }

  .nav-link {
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  .coming-copy {
    width: 100%;
    padding: 140px 18px 44px;
  }

  .coming-copy h1 {
    font-size: clamp(52px, 17vw, 78px);
  }

  .coming-subtitle {
    font-size: 17px;
  }

  .coming-app-card {
    min-height: 250px;
  }
}
