:root {
  --bg: #ede8e2;
  --surface: rgb(238, 236, 232);
  --line: rgba(79, 79, 79, 0.14);
  --ink: #555555;
  --muted: #6a6865;
  --shadow: 0 24px 80px rgba(88, 88, 88, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Lexend Deca", "Segoe UI", sans-serif;
}

.coming-shell {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  padding: 3rem 2rem 2rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.45), transparent 24rem),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.35), transparent 20rem),
    var(--bg);
}

.coming-card {
  width: min(760px, 100%);
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.logo-mark {
  width: min(440px, 82%);
  margin: 0 auto 1.5rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0 1rem;
  margin: 0 0 1.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-family: "Lexend Deca", "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 0.95;
}

.lead,
.domain-note,
.status-grid span {
  color: var(--muted);
}

.lead {
  width: min(54ch, 100%);
  margin: 1.2rem auto 0;
  font-size: 1.02rem;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.status-grid article {
  padding: 1.15rem 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.28);
}

.status-grid strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Lexend Deca", "Segoe UI", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.domain-note {
  margin: 1.8rem 0 0;
  font-size: 0.96rem;
}

@media (max-width: 760px) {
  .status-grid {
    grid-template-columns: 1fr;
  }

  .coming-card {
    padding: 2rem 1.4rem;
    border-radius: 24px;
  }
}
