:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: #20201d;
  background: #f3f1eb;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(91, 119, 105, 0.16), transparent 34rem),
    linear-gradient(145deg, #f8f7f2, #ece9df);
}

.welcome {
  width: min(760px, calc(100% - 40px));
  padding: clamp(36px, 7vw, 72px);
  border: 1px solid rgba(55, 57, 49, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 252, 0.78);
  box-shadow: 0 24px 70px rgba(42, 44, 37, 0.1);
  backdrop-filter: blur(12px);
}

.eyebrow {
  margin: 0 0 18px;
  color: #526c60;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

h1 {
  margin: 0;
  max-width: 12em;
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(2.2rem, 7vw, 4.6rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.intro {
  margin: 28px 0;
  max-width: 39rem;
  color: #66665f;
  font-size: clamp(1rem, 2.2vw, 1.16rem);
  line-height: 1.85;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #385247;
  background: #e5eee8;
  font-size: 0.9rem;
  font-weight: 650;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d8b64;
  box-shadow: 0 0 0 4px rgba(61, 139, 100, 0.14);
}

