:root { color-scheme: dark; }

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 32px 22px;
  color: #f5f7fb;
  background: radial-gradient(circle at 50% 30%, #182a4c 0%, #0c1322 43%, #060910 100%);
  font-family: "Manrope", Arial, sans-serif;
}

.coming-soon {
  width: min(100%, 620px);
  text-align: center;
  animation: appear .9s ease-out both;
}

.logo { width: min(260px, 68vw); height: auto; display: block; margin: 0 auto 54px; }
.label { margin: 0 0 19px; color: #72a3ff; font: 500 11px/1 "DM Mono", monospace; letter-spacing: .16em; }
h1 { margin: 0; font-size: clamp(30px, 5vw, 46px); line-height: 1.14; letter-spacing: -.055em; font-weight: 600; }
.intro { max-width: 490px; margin: 25px auto 28px; color: #aebbd0; font-size: 15px; line-height: 1.75; }
.email { color: #dce9ff; font-size: 14px; font-weight: 600; border-bottom: 1px solid #4a80dd; padding-bottom: 5px; }
.email:hover { color: #79a8ff; }
.divider { width: 42px; height: 1px; margin: 48px auto 22px; background: #ffffff2b; }
.company-details { display: flex; justify-content: center; gap: 18px; color: #7f8da4; font: 11px/1.7 "DM Mono", monospace; }

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

@media (max-width: 520px) {
  .logo { margin-bottom: 43px; }
  h1 br { display: none; }
  .company-details { flex-direction: column; gap: 2px; }
}
