/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #c8c8c8;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Layout ── */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

/* ── Logo group ── */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.logo-mark {
  display: block;
}

.logo-wordmark {
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 12px;
  text-transform: uppercase;
  color: #aaaaaa;
}

.logo-wordmark span {
  font-weight: 600;
  color: #999999;
}

/* ── Catchphrase ── */
.catchphrase {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #bbbbbb;
  text-align: center;
  line-height: 1.9;
}

/* ── Coming Soon ── */
.coming-soon {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #bbbbbb;
}
