* { box-sizing: border-box; margin: 0; padding: 0; }
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8vw;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #EEF0F3;
  z-index: 20;
}
.topbar .brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  text-decoration: none;
  color: inherit;
}
.topbar .brand span {
  color: #16A34A;
}
.topbar .whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: #ffffff;
  background: #16A34A;
  padding: 9px 18px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.topbar .whatsapp-btn:hover {
  background: #15803D;
  transform: translateY(-1px);
}
.topbar .whatsapp-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar .auth-link {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #5A5F6B;
  text-decoration: none;
}
.topbar .auth-link:hover {
  color: #16A34A;
}
.topbar .user-badge {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #5A5F6B;
}
body {
  background-color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  color: #111318;
  overflow-x: hidden;
}
main {
  min-height: 100vh;
  padding: 64px 8vw 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wrap {
  max-width: 640px;
}
.bar {
  width: 56px;
  height: 5px;
  background: #16A34A;
  margin-bottom: 28px;
}
.label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #16A34A;
  margin-bottom: 10px;
}
h1 {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
main p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #5A5F6B;
  max-width: 480px;
}
.status {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #9AA0AC;
  margin-top: 32px;
}
.back {
  display: inline-block;
  margin-top: 32px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #16A34A;
  text-decoration: none;
}
.back:hover {
  text-decoration: underline;
}
