:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f7f8;
  color: #111;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  width: min(480px, 100%);
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  padding: 36px 28px;
  text-align: center;
}

.avatar {
  /* width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #4f46e5 0%, #a855f7 100%); */
  display: grid;
  place-items: center;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
}

p.subtitle {
  margin: 10px auto 32px;
  max-width: 340px;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.7;
}

.buttons {
  display: grid;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  color: #111827;
  background: #f3f4f6;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #e5e7eb;
  border-color: #d1d5db;
}

.button.primary {
  color: #ffffff;
  background: #4f46e5;
}

.button.primary:hover {
  background: #4338ca;
}

.note {
  margin-top: 24px;
  font-size: 0.92rem;
  color: #6b7280;
}

.footer-note {
  margin-top: 24px;
  font-size: 0.88rem;
  color: #6b7280;
  text-align: center;
}

.footer-note a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
}

.footer-note a:hover {
  color: #374151;
}
