:root {
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background: #f5f6f8;
  color: #1f2937;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding: 8vh 20px 32px;
  box-sizing: border-box;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 360px;
  width: 100%;
  text-align: center;
}

.logo {
  max-width: 140px;
  height: auto;
  margin-bottom: 8px;
}

.product {
  max-width: 220px;
  max-height: 200px;
  object-fit: contain;
}

h1 {
  margin: 4px 0 0;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
}

.code {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.guidance {
  margin: 4px 0 0;
  color: #374151;
  font-size: 15px;
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 8px;
}

.group-label {
  margin: 8px 0 -2px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button {
  display: block;
  padding: 13px 20px;
  border-radius: 999px;
  border: 2px solid #d2691e;
  background: #d2691e;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.button.secondary {
  background: transparent;
  color: #b4500f;
}

.more {
  margin-top: 20px;
  color: #6b7280;
  font-size: 13px;
}