:root {
  --bg-start: #1f2329;
  --bg-end: #13161b;
  --text: #f5f7fa;
  --text-muted: #c8ccd4;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Manrope, Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: radial-gradient(circle at 20% 20%, #2b313b 0%, transparent 45%),
    linear-gradient(225deg, var(--bg-start) 0%, var(--bg-end) 100%);
}

.page {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
}

.hero {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-wrap {
  width: min(500px, 95vw);
  margin: -120px 0 -180px;
}

.logo {
  width: 100%;
  height: auto;
  display: block;
}

.symbol-wrap {
  position: relative;
  width: min(560px, 92vw);
  aspect-ratio: 1 / 1;
  margin-bottom: -10%;
  overflow: hidden;
}

.ring,
.digit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ring {
  animation: spin 32s linear infinite;
}

.digit {
  z-index: 2;
}

.message {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.2;
  letter-spacing: 0.03em;
  font-weight: 500;
}

.submessage {
  margin: 12px 0 0;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.4;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .logo-wrap {
    margin: -70px 0 -120px;
  }

  .symbol-wrap {
    margin-bottom: -6%;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
