/* Mobile-friendly patient launcher — pairs with /patient-app */
.patient-app-shell {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.patient-app-hero {
  padding: 40px 28px 28px;
}
.patient-app-actions {
  padding: 8px 28px 56px;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.patient-app-actions a {
  display: block;
  text-align: center;
  padding: 18px 22px;
  border-radius: 10px;
  font-family: var(--sans, 'Helvetica Neue', Helvetica, Arial, sans-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.patient-app-actions a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
.patient-app-primary {
  background: linear-gradient(165deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff !important;
  border-bottom: none !important;
  box-shadow:
    0 2px 12px rgba(58, 125, 110, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.patient-app-primary:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow:
    0 4px 18px rgba(58, 125, 110, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.patient-app-secondary {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink) !important;
  border: 1px solid rgba(58, 125, 110, 0.35) !important;
  border-bottom: 1px solid rgba(58, 125, 110, 0.35) !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}
.patient-app-secondary:hover {
  border-color: var(--teal) !important;
  color: var(--teal-dark) !important;
}
.patient-app-note {
  margin-top: 8px;
  padding: 0 28px 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
