:root {
  --blue: #2E7FB8;
  --blue-muted: #6A93AC;
  --bg: #FFFFFF;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  max-width: 420px;
}

.crest {
  width: 140px;
  height: auto;
  animation: latido 1.6s ease-in-out infinite;
}

.year {
  margin: 28px 0 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--blue);
}

.message {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--blue-muted);
}

.contact {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.contact-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

.dot {
  color: var(--blue-muted);
}

.signup {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid #EAF3FA;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.signup-text {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--blue-muted);
}

.qr {
  width: 120px;
  height: 120px;
  border-radius: 6px;
}

@keyframes latido {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .crest {
    animation: none;
  }
}
