* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f6f9;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic UI", sans-serif;
}
.teaser {
  text-align: center;
  padding: 40px;
}
.teaser img {
  max-width: 260px;
  width: 60vw;
  height: auto;
  margin-bottom: 28px;
}
.status {
  color: #555;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}
.note-cta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e0e4ec;
}
.note-text {
  color: #666;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.note-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 28px;
  border: 1px solid #1a1a2e;
  border-radius: 24px;
  color: #1a1a2e;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.note-link:hover {
  background: #1a1a2e;
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,26,46,0.25);
}
.note-arrow {
  transition: transform 0.2s;
}
.note-link:hover .note-arrow {
  transform: translateX(3px);
}
