:root {
  color-scheme: light;
  font-family:
    Inter, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  background: #f6f5ef;
  color: #1d2528;
}

* {
  box-sizing: border-box;
}

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

body {
  display: grid;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(31, 87, 101, 0.14), transparent 42%),
    linear-gradient(315deg, rgba(178, 48, 41, 0.12), transparent 38%),
    #f6f5ef;
}

.page-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.hero {
  display: grid;
  width: min(100%, 680px);
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.brand-mark {
  width: min(36vw, 132px);
  aspect-ratio: 1;
}

.eyebrow {
  margin: 8px 0 0;
  color: #1f5765;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  color: #1d2528;
  font-size: clamp(2.25rem, 7vw, 4.75rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.status {
  margin: 0;
  color: #5a6366;
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: 0;
}

@media (max-width: 520px) {
  .page-shell {
    padding: 24px;
  }

  .hero {
    gap: 12px;
  }
}

