:root {
  color-scheme: light;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17211f;
  background: #f7f5f1;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
}
main {
  width: 100%;
  max-width: 640px;
  padding: clamp(24px, 6vw, 48px);
  background: #fff;
  border: 1px solid #d9e0dd;
  border-radius: 20px;
}
.brand {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  margin: 0 0 48px;
  color: #145b55;
  font-size: 20px;
  font-weight: 650;
}
.brand span { color: #5a6864; font-size: 14px; font-weight: 400; }
.status {
  display: inline-block;
  margin: 0 0 20px;
  padding: 8px 12px;
  color: #145b55;
  background: #ddefea;
  border-radius: 8px;
  font-size: 14px;
}
h1 { margin: 0 0 20px; font-size: clamp(26px, 5vw, 38px); line-height: 1.2; font-weight: 650; }
.description { margin: 0; color: #5a6864; font-size: 17px; line-height: 1.6; }
.note { margin: 36px 0 0; padding-top: 24px; border-top: 1px solid #d9e0dd; color: #5a6864; font-size: 14px; line-height: 1.5; }
