.qr_page {
  background-color: var(--surface-sunken);
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 40px 16px 96px;
  font-family: var(--font-body);
  display: flex;
}

.qr_stack {
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 480px;
  display: flex;
}

.qr_card {
  background-color: var(--surface-default);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
}

.qr_card.is-profile {
  border-radius: var(--radius-feature);
  overflow: hidden;
}

.qr_cover {
  background-color: var(--surface-brand-soft);
  height: 150px;
  position: relative;
}

.qr_cover-img {
  object-fit: cover;
  object-position: 50% 32%;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.qr_profile-body {
  flex-direction: column;
  align-items: center;
  padding: 0 24px 28px;
  display: flex;
}

.qr_avatar {
  background-color: var(--surface-default);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-pill);
  width: 120px;
  height: 120px;
  margin-top: -60px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 5px var(--surface-default), var(--shadow-subtle);
  overflow: hidden;
}

.qr_avatar-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.qr_name {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 0;
}

.qr_role {
  color: var(--text-body);
  text-align: center;
  margin-top: 6px;
  margin-bottom: 0;
  font-size: .9375rem;
}

.qr_status {
  border: 1px solid var(--border-subtle);
  background-color: var(--surface-canvas);
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 6px 14px;
  font-size: .8125rem;
  font-weight: 500;
  display: inline-flex;
}

.qr_dot {
  background-color: var(--color-scheme-1--fg_success_primary);
  border-radius: var(--radius-pill);
  width: 8px;
  height: 8px;
  animation: 2s var(--easing-standard) infinite qr-dot-pulse;
}

.qr_cta {
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.qr_links {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.qr_row {
  background-color: var(--surface-default);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  text-decoration: none;
  transition: background-color var(--duration-hover) var(--easing-standard), transform var(--duration-hover) var(--easing-standard);
  display: flex;
}

.qr_row:hover {
  background-color: var(--color-scheme-1--bg_primary_hover);
  transform: translateY(-1px);
}

.qr_row.is-linkedin {
  background-color: #0a66c2;
  border-color: #0a66c2;
  transition: filter var(--duration-hover) var(--easing-standard), transform var(--duration-hover) var(--easing-standard);
}

.qr_row.is-linkedin:hover {
  filter: brightness(1.08);
  background-color: #0a66c2;
}

.qr_row-icon {
  background-color: var(--surface-brand-soft);
  border-radius: var(--radius-chip);
  color: var(--color-scheme-1--text_brand_primary);
  flex: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: inline-flex;
}

.qr_row-icon.is-linkedin {
  color: #0a66c2;
  background-color: #fffffd;
}

.qr_row-text {
  flex-direction: column;
  flex: 1;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.qr_row-title {
  color: var(--text-primary);
  line-height: var(--lh-ui);
  font-size: .9375rem;
  font-weight: 600;
}

.qr_row-meta {
  color: var(--text-body);
  line-height: var(--lh-tight);
  font-size: .8125rem;
}

.qr_row-title.is-linkedin {
  color: #fffffd;
}

.qr_row-meta.is-linkedin {
  color: #fffffd;
  opacity: .85;
}

.qr_row-chevron {
  color: var(--text-muted);
  flex: none;
  font-size: 18px;
}

.qr_row-chevron.is-linkedin {
  color: #fffffd;
  font-size: 20px;
}

.qr_about {
  flex-direction: column;
  gap: 10px;
  padding: 22px 24px;
  display: flex;
}

.qr_label {
  color: var(--text-muted);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  font-size: .6875rem;
  font-weight: 500;
}

.qr_about-text {
  color: var(--text-body);
  line-height: var(--lh-body);
  text-wrap: pretty;
  margin-bottom: 0;
  font-size: .9375rem;
}

.qr_footer {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  display: flex;
}

.qr_footer-contact {
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  display: flex;
}

.qr_footer-sep {
  color: var(--text-muted);
}

.qr_footer-legal {
  color: var(--text-muted);
  font-size: .75rem;
}
