/* Web App “coming soon” — shared modal + landing (marketing site) */
.web-soon-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(4, 8, 14, 0.72);
  backdrop-filter: blur(6px);
}
.web-soon-modal[hidden] {
  display: none !important;
}
.web-soon-card {
  width: min(24rem, 100%);
  border-radius: 16px;
  padding: 1.35rem 1.25rem 1.15rem;
  background: linear-gradient(165deg, #121a24 0%, #0b1018 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  color: #f2f4f8;
}
.web-soon-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  line-height: 1.35;
}
.web-soon-card p {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(242, 244, 248, 0.82);
}
.web-soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.web-soon-actions .btn {
  flex: 1 1 auto;
  min-width: 7rem;
  text-align: center;
}
.nav-web-soon {
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}
.nav-web-soon:hover {
  text-decoration: underline;
}
.page-web-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #07090e;
  color: #f2f4f8;
}
.page-web-soon main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem 3rem;
}
.web-soon-hero {
  max-width: 28rem;
  text-align: center;
}
.web-soon-hero img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  margin-bottom: 1rem;
}
.web-soon-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 193, 94, 0.14);
  color: #ffc15e;
  margin-bottom: 0.75rem;
}
.web-soon-hero h1 {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  margin: 0 0 0.65rem;
}
.web-soon-hero p {
  margin: 0 0 1.25rem;
  line-height: 1.6;
  color: rgba(242, 244, 248, 0.82);
}
.web-soon-hero .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}
