:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #666f7a;
  --line: #dfe4ea;
  --soft: #f6f8fa;
  --accent: #0f766e;
  --accent-ink: #115e59;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(246, 248, 250, 0.8), rgba(255, 255, 255, 0) 40%),
    #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.notice {
  width: min(100%, 680px);
  text-align: center;
  padding: 48px 32px;
}

.brand-mark {
  width: 104px;
  height: 104px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
}

.brand-logo {
  max-width: 104px;
  max-height: 104px;
  object-fit: contain;
}

.default-logo {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--accent-ink);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.status {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 600;
}

.message {
  max-width: 520px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.contact-link {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--accent-ink);
  background: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-link:hover {
  border-color: var(--accent);
}

@media (max-width: 520px) {
  .notice {
    padding: 32px 4px;
  }

  .brand-mark {
    width: 84px;
    height: 84px;
    margin-bottom: 22px;
  }

  .brand-logo {
    max-width: 84px;
    max-height: 84px;
  }

  h1 {
    font-size: 40px;
  }

  .status {
    font-size: 18px;
  }
}
