/* Лендинг-заглушка «Скоро будет». Самостоятельный CSS, без зависимостей. */

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #0d1117;
  background: #f3f4f6;
  -webkit-font-smoothing: antialiased;
}

.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: radial-gradient(1200px 600px at 50% -10%, #fff8e6 0%, #f3f4f6 60%);
}

.landing-card {
  max-width: 560px;
  width: 100%;
  background: #fff;
  border: 1px solid #d6dadf;
  border-radius: 2px;
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 1px 0 #fff inset, 0 2px 24px rgba(13, 17, 23, 0.04);
}

.landing-logo {
  max-width: 240px;
  height: auto;
  margin: 0 auto 28px;
  display: block;
}

.landing-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
  color: #0d1117;
}

.landing-sub {
  font-size: 15px;
  line-height: 1.55;
  color: #5a6068;
  margin-bottom: 28px;
}

.landing-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: #ededef;
  border: 1px solid #d6dadf;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #495057;
  margin-bottom: 28px;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

.landing-status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cc8a18;
  box-shadow: 0 0 0 3px rgba(204, 138, 24, 0.18);
}

.landing-cta {
  display: inline-block;
  padding: 11px 22px;
  background: #04AA6D;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  border-radius: 2px;
  border: 1px solid #04AA6D;
  transition: background .12s;
}

.landing-cta:hover {
  background: #038B5A;
  border-color: #038B5A;
}

.landing-foot {
  margin-top: 32px;
  font-size: 12px;
  color: #5a6068;
  display: flex;
  gap: 8px;
  align-items: center;
}

.landing-foot a {
  color: #5a6068;
  text-decoration: none;
}

.landing-foot a:hover {
  color: #04663F;
  text-decoration: underline;
}

@media (max-width: 560px) {
  .landing-card { padding: 36px 24px; }
  .landing-title { font-size: 22px; }
  .landing-sub { font-size: 14px; }
  .landing-logo { max-width: 180px; }
}
