*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: #0d1117;
  background-image: url("../splash/img/light-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px 16px;
}

.scrim {
  position: fixed;
  inset: 0;
  background: linear-gradient(170deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.68) 100%);
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 340px;
  width: 100%;
  animation: up 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

h1 {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px;
}

p {
  font-size: 15px;
  color: rgba(255,255,255,0.52);
  line-height: 1.6;
  max-width: 240px;
}

.rule {
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.14);
  margin: 40px auto;
}

.domain {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.20);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}